Decode quoted-printable
XML
<decode:quotedprint var="var">
string
</decode:quotedprint>
<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
XML
<output>
<decode:quotedprint>Hello World!=0AMy name is iXML!</decode:quotedprint>
</output>
<!--
Hello World!
My name is iXML!
-->