Golang 去除字符串中的转义符
在 Golang 中,可以使用 strings 包中的 ReplaceAll 函数来去除字符串中的转义符。示例代码如下:
package main
import (
"fmt"
"strings"
)
func main() {
str := 'Hello\, World\!'
newStr := strings.ReplaceAll(str, '\', '')
fmt.Println(newStr)
}
输出结果为:
Hello, World!
在上面的代码中,我们使用 ReplaceAll 函数将字符串中的转义符 '' 替换为空字符串。
原文地址: https://www.cveoy.top/t/topic/ozcx 著作权归作者所有。请勿转载和采集!