QUOTEDTOTEXT

The QUOTEDTOTEXT decoding function converts a single (text or binary) data object in Quoted-Printable format to a single data object that represents the original text or binary object.

Syntax:
QUOTEDTOTEXT (single-object-expression)
Meaning:
QUOTEDTOTEXT (quoted_printable_object_to_convert)
Returns:
A single-text-item

You can use this function to decode data that was previously encoded to RFC 1767 Quoted-Printable encoding. Any hexadecimal representations are decoded to the appropriate ASCII character and any soft breaks are removed.

If an error occurs during conversion, no data is returned.

Example

QUOTEDTOTEXT("Unencoded data=0CEncoded")

Output: Unencoded data<FF>Encoded