GO语言"mime"包中"WordDecoder.DecodeHeader"类型的用法及代码示例。
用法:
func(d *WordDecoder) DecodeHeader(header string)(string, error)
DecodeHeader 解码给定字符串的所有 encoded-words。当且仅当CharsetReader of d 返回错误时,它才会返回错误。
例子:
package main
import (
"bytes"
"fmt"
"io"
"mime"
)
func main() {
dec := new(mime.WordDecoder)
header, err := dec.DecodeHeader("=?utf-8?q?=C3=89ric?= <eric@example.org>, =?utf-8?q?Ana=C3=AFs?= <anais@example.org>")
if err != nil {
panic(err)
}
fmt.Println(header)
header, err = dec.DecodeHeader("=?utf-8?q?=C2=A1Hola,?= =?utf-8?q?_se=C3=B1or!?=")
if err != nil {
panic(err)
}
fmt.Println(header)
dec.CharsetReader = func(charset string, input io.Reader) (io.Reader, error) {
switch charset {
case "x-case":
// Fake character set for example.
// Real use would integrate with packages such
// as code.google.com/p/go-charset
content, err := io.ReadAll(input)
if err != nil {
return nil, err
}
return bytes.NewReader(bytes.ToUpper(content)), nil
default:
return nil, fmt.Errorf("unhandled charset %q", charset)
}
}
header, err = dec.DecodeHeader("=?x-case?q?hello_?= =?x-case?q?world!?=")
if err != nil {
panic(err)
}
fmt.Println(header)
}
输出:
Éric <eric@example.org>, Anaïs <anais@example.org> ¡Hola, señor! HELLO WORLD!
相关用法
- GO WordDecoder.Decode用法及代码示例
- GO WordEncoder.Encode用法及代码示例
- GO WithDeadline用法及代码示例
- GO Writer.Init用法及代码示例
- GO WaitGroup用法及代码示例
- GO Writer.WriteAll用法及代码示例
- GO WriteFile用法及代码示例
- GO Writer.RegisterCompressor用法及代码示例
- GO WithValue用法及代码示例
- GO WalkDir用法及代码示例
- GO WithTimeout用法及代码示例
- GO Writer用法及代码示例
- GO WriteString用法及代码示例
- GO Write用法及代码示例
- GO WithCancel用法及代码示例
- GO Writer.AvailableBuffer用法及代码示例
- GO Walk用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 WordDecoder.DecodeHeader。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。