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
+20.9k Golang : Sort and reverse sort a slice of strings
+5.7k Golang : Markov chains to predict probability of next state example
+12.8k Golang : Convert IPv4 address to packed 32-bit binary format
+6.6k Golang : Derive cryptographic key from passwords with Argon2
+11.9k Golang : Perform sanity checks on filename example
+36.3k Golang : Validate IP address
+5.2k Javascript : Change page title to get viewer attention
+13.2k Golang : Verify token from Google Authenticator App
+5.9k Linux/MacOSX : Search for files by filename and extension with find command
+15.1k Golang : How to add color to string?
+10.6k Golang : Get currencies exchange rates example
+6.1k Apt-get to install and uninstall Golang