duanfu4446 2016-12-01 08:11
浏览 50
已采纳

在Golang中解码带引号的可打印电子邮件

When you type a two spaces in a row in an html email in Gmail it encodes it into the quoted-printable body as "=C2=A0 " if you look at the source of the email.

According to this stackoverflow answer, because of the UTF-8 encoding this should be converted to 00A0 (nbsp) when decoded: https://stackoverflow.com/a/2774507

However, in Golang, this isn't how it works:

s := `Text Text Text.=C2=A0 That's just two spaces`

r := strings.NewReader(s)

qpReader := quotedprintable.NewReader(r)

all, _ := ioutil.ReadAll(qpReader)

str := string(all)

fmt.Println(strings.Index(str, "\xC2\xA0"))

This outputs "15", here's the Playground link: https://play.golang.org/p/8n6L7dlZPt

Instead of it using an NBSP there, it will keep the \xC2 and result in "Text Text Text That's just two spaces".

What's the best way to correctly render this as \x00A0?

  • 写回答

1条回答 默认 最新

  • dqve65954 2016-12-01 10:47
    关注

    As Volker explained in his comment, a Go string is simply a slice of bytes. In your case, it's already encoded as UTF-8 which is Go's default encoding. To access the actual Unicode code points (runes in Go lingo), use something like:

    // Prints 15.
    fmt.Println(strings.IndexRune(str, '\xA0'))
    
    // Prints A0.
    fmt.Printf("%X
    ", []rune(str)[15]);
    

    How to correctly render the string depends on where you want to render it. But in most cases, you can pass it as is since it's already in UTF-8.

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

报告相同问题?

悬赏问题

  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程