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 时间序列预测算法 预测结果出现负值
  • ¥15 苹果mac m1系统在关闭sip后怎么能使用app
  • ¥15 在win系统Django虚拟环境下载mysqlclient报错
  • ¥15 pg数据库导入数据序列重复
  • ¥15 三分类机器学习模型可视化分析
  • ¥15 本地测试网站127.0.0.1 已拒绝连接,如何解决?(标签-ubuntu)
  • ¥50 Qt在release捕获异常并跟踪堆栈(有Demo,跑一下环境再回答)
  • ¥30 python,LLM 文本提炼
  • ¥15 关于将inet引入的相关问题
  • ¥15 关于一个倒计时的操作和显示设计