Encode quoted-printable
XML
<encode:quotedprint var="var">
string
</encode:quotedprint>
<encode:quotedprint /> encodes a value according to RFC 2045 by replacing unprintable characters with an equal sign ('=') followed by a 2-character hexadecimal number.
<encode:quotedprint /> is the complement of the <decode:quotedprint /> operation.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name | encode:quotedprint |
Results
| Binding | Type | Predicate |
|---|---|---|
| var | string | N/A |
Examples
XML
<output>
<encode:quotedprint>Hello World!&n;My name is iXML!</encode:quotedprint>
</output>
<!-- Hello World!=0AMy name is iXML! -->