Decode quoted-printable
Anatomy
<decode:quotedprint var="var">
string
</decode:quotedprint>
Description: DECODE:QUOTEDPRINT decodes a value according to RFC 2045 by replacing sequences incipient with an equal sign ('=') followed by a 2-character hexadecimal number with their applicable characters.
DECODE:QUOTEDPRINT is the complement of the ENCODE:QUOTEDPRINT operation.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name | decode:quotedprint |
Results:
| Binding | Type | Predicate |
|---|---|---|
| var | string | N/A |
Examples
Example
<output>
<decode:quotedprint>Hello World!=0AMy name is iXML!</decode:quotedprint>
</output>
<!--
Hello World!
My name is iXML!
-->