DecodeQuotedPrintable Function
Decodes into 'normal' text a string that has been encoded by EncodeQuotedPrintable.
Syntax
result = DecodeQuotedPrintable( str, [encoding] )
Parameters | ||
str |
The string expression to be decoded back to its original form. |
|
encoding (Optional) |
Optional: The text encoding of the passed string. If you pass an encoding, is has the same effect as calling DefineEncoding on the returned String. |
Return Value | ||
Result |
The result of processing str. |
Notes
DecodeQuotedPrintable converts text representations of unprintable characters (i.e., control characters, returns and tabs) back into their original form. It is designed for handling email or usenet messages. It undoes the encoding done by EncodeQuotedPrintable.
The DecodeQuotedPrintable function performs the function in reverse.
DecodeQuotedPrintable can decode strings in which hexadecimal values are represented in lowercase as well as the standard uppercase.
See Also
EncodeQuotedPrintable function.