我正在用 Golang 编写应用程序。我需要解码电子邮件主题。原题:Raport z eksportu ogłoszeń nieruchomości编码主题:=?utf-8?B?RG9tLmV1IC0gcmFwb3J0IHogZWtzcG9ydHUgb2fFgm9zemXF?= =?utf-8?B?hCBuaWVydWNob21vxZtjaQ==?=^M解码主题:“Raport z eksportu ogłosze▒ ▒ nieruchomości”我使用 github.com/famz/RFC2047 来解码电子邮件主题。我的代码很简单:RFC2047.Decode(msg.Header.Get("Subject"))为什么解码后题目就坏了?其他科目被正确解码。这是一个糟糕的编码主题吗?
3 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
在空闲时间我写了这个函数。该函数连接部分字符串并返回一个字符串。
func parseSubject(s string) string {
patternType := regexp.MustCompile("(?i)=\\?.*?\\?.*?\\?")
resType := patternType.FindString(s)
if resType == "" {
return s
} else {
pattern := regexp.MustCompile("(?i)=\\?.*?\\?.*?\\?|\\s+|\\?=")
res := pattern.ReplaceAllLiteral([]byte(s), []byte(""))
return resType + string(res) + "?="
}
}
- 3 回答
- 0 关注
- 254 浏览
添加回答
举报
0/150
提交
取消