Decode ( String encodedWords ) : String |
Decode text that is encoded with the EncodedWord encoding. This method will decode any encoded-word found in the String. All parts which is not encoded will not be touched. From RFC 2047: Generally, an "encoded-word" is a sequence of printable ASCII characters that begins with "=?", ends with "?=", and has two "?"s in between. It specifies a character set and an encoding method, and also includes the original text encoded as graphic ASCII characters, according to the rules for that encoding method. Example: =?ISO-8859-1?q?this=20is=20some=20text?= other text here See RFC 2047 section 2 "Syntax of encoded-words" for more details |
|