Golang : Query string with space symbol %20 in between
Problem :
You want to form URL that looks like this :
https://example.com/query?keyword="golang lookup"
but your final URL looks like this :
https://example.com/query?keyword="golang%20lookup"
How to get rid the %20
sign ?
Solution :
Use url.QueryEscape() function to escapes the string so it can be safely placed inside a URL query. For example :
func TagSearch(tag string) string {
return fmt.Sprintf("https://example.com/query?keyword=%s", url.QueryEscape(tag))
}
References :
See also : Golang : Get query string value on a POST request
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.3k Golang : Generate Datamatrix barcode
+19.3k Golang : Convert file content into array of bytes
+32.3k Golang : Remove dashes(or any character) from string
+3.3k PHP : See installed compiled-in-modules
+20.3k Golang : Converting a negative number to positive number
+4.9k Golang : Handling Yes No Quit query input
+13.2k Golang :Trim white spaces from a string
+12.8k Golang : Get sub string example
+24.2k Golang : Regular Expression for alphanumeric and underscore
+3.7k PHP : How to handle URI or URL with non-ASCII characters such as Chinese/Japanese/Korean(CJK) ?
+9.3k Golang : How to run your code only once with sync.Once object