Golang : Strip slashes from string example
A quick post on how to get an equivalent to PHP's stripslashes()
function in Golang. Basically in PHP, the stripslashes()
function will remove any backslashes from a string. \'
becomes '
and double backslashes \\
are made into a single backslash \
.
Example from official PHP documentation :
<?php
$str = "Is your name O\'reilly?";
echo stripslashes($str);
?>
Output :
Is your name O'reilly?
To achieve similar result in Golang, use this example :
package main
import (
"fmt"
"strings"
)
func main() {
// use backtick ` instead of double quote "
// otherwise, you will get this error message
// unknown escape sequence: '
str := `Is your name O\'reilly?`
fmt.Println(str)
stripSlash := strings.Replace(str, "\\", "", -1)
fmt.Println(stripSlash)
}
Output :
Is your name O\'reilly?
Is your name O'reilly?
NOTE :
Golang's strconv.Unquote()
function does not strip backslashes. What it does is to transform the a Go character literal to the corresponding one-character.
Happy coding!
Reference :
See also : Golang : unknown escape sequence error
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
+10.5k Golang : Meaning of omitempty in struct's field tag
+4.7k Adding Skype actions such as call and chat into web page examples
+18k Golang : Qt image viewer example
+15.1k Golang : How do I get the local IP (non-loopback) address ?
+7.2k Golang : Get environment variable
+8.7k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+6.1k PageSpeed : Clear or flush cache on web server
+5.5k Unix/Linux/MacOSx : How to remove an environment variable ?
+34.1k Golang : Proper way to set function argument default value
+14.3k Golang : Fix image: unknown format error
+8.5k Golang : Generate Datamatrix barcode
+7.1k Golang : How to call function inside template with template.FuncMap