README ¶ RFC2047 for Go An RFC2047 Decoder package for Golang Usage Just import "github.com/famz/RFC2047", then call "RFC2047.Decode" with your encoded string and get it decoded! See below for an example. Install Simple as go get github.com/famz/RFC2047 Example package main import ( "github.com/famz/RFC2047" "fmt" ) func main() { fmt.Println(RFC2047.Decode("=?UTF-8?B?5YmN5Y+w5pyJ5L2g5L+h?=")) } Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func Decode(s string) (ret string) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Decode ¶ func Decode(s string) (ret string) Types ¶ This section is empty. Source Files ¶ View all Source files RFC2047.go Click to show internal directories. Click to hide internal directories.