Golang:逃避单引号

前端之家收集整理的这篇文章主要介绍了Golang:逃避单引号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法逃避单引号?

下列:

str := "I'm Bob,and I'm 25."
str = strings.Replace(str,"'","\'",-1)

给出错误:未知的转义序列:’

我想成为

"I\'m Bob,and I\'m 25."
你还需要在strings.Replace中转义斜杠.
str := "I'm Bob,"\\'",-1)

https://play.golang.org/p/mZaaNU3FHw

原文链接:https://www.f2er.com/go/186826.html

猜你在找的Go相关文章