quotedPrintableDecode

Syntax string.quotedPrintableDecode (s)

Params s is a string whose text you want to decode from quoted printable encoding to plain ASCII.

Action Decode a string from quoted printable encoding to plain ASCII.

Returns A string, the result.

Examples string.quotedPrintableDecode ("Voulez-vous du th=E9?") //the =E9 will be decoded

   » "Voulez-vous du thé?"

Notes This verb is most useful for decoding 8-bit characters in email messages downloaded using tcp.getMail

On Macintosh, call string.latinToMac on the returned text, to convert it to the Macintosh character set.

This verb, new in Frontier 7, is implemented as a script.

See also string.iso8859encode

string.latinToMac

string.macToLatin

string.urlDecode

string.urlEncode

Discuss