如何在Golang中取消转义带引号的八进制字符串?

huangapple go评论76阅读模式
英文:

How to unescape quoted octal strings in Golang?

问题

我有以下字符串:

`3032363437`

我需要将其转换为

"èêîôç"

我该如何做到这一点?

谢谢

英文:

I have the following string:

`3032363437`

I need to convert it to

"èêîôç"

How can I do that?

Thanks

答案1

得分: 4

好的,以下是翻译好的内容:

好的,我明白了

     a := `"3032363437"`
     b, err := strconv.Unquote(a)
英文:

Ok I got it

 a := `"3032363437"`
 b, err := strconv.Unquote(a)

huangapple
  • 本文由 发表于 2017年3月13日 07:10:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/42754307.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定