douxunchen3498 2017-12-29 09:33
浏览 371
已采纳

Golang符文字符串或如何转换?

I have a string which contains following text.

\xD0\xA4\xD0\xB5\xD0\xB4\xD0\xBE\xD1\x80\xD0\xBE\xD0\xB2

It is not a literal. In string it's stored as separate characters like this ['\','x','D','0','\','x','A','4',...]

How to convert this string to normal characters?

  • 写回答

1条回答 默认 最新

  • dongqun1656 2017-12-29 09:42
    关注

    Go accepts hexadecimal rune literals.

    So you can use your input as a regular string:

    fmt.Println("\xD0\xA4\xD0\xB5\xD0\xB4\xD0\xBE\xD1\x80\xD0\xBE\xD0\xB2")
    Федоров
    

    Playground example.

    If you start with the actual string ["\" "x" "D" "0" ...], you'll need to convert the individual 4-byte sequences to characters. One dirty way is:

    s := `\xD0\xA4\xD0\xB5\xD0\xB4\xD0\xBE\xD1\x80\xD0\xBE\xD0\xB2`
    s2, _ := hex.DecodeString(strings.Replace(s, "\\x", "", -1))
    fmt.Printf("%s", s2)
    

    Playground example.

    Edited to answer edited question.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 netty整合springboot之后自动重连失效
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击