Provide a new function, like any other language, function can Un-quotes a quoted string.
Describe:
Returns a string with backslashes stripped off. (' becomes ' and so on.)
Double backslashes (\) are made into a single backslash ().
For example:
fmt.Println(StripSlashes(`\\\\1`))
// will print "\\1"
other language function like: https://www.php.net/manual/en/function.stripslashes.php
See pull request:
#43492
Relates to the proposal:
https://go-review.googlesource.com/c/go/+/281372