Skip to main content

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

NameTypeDescriptionDefined By
varvarResult variable name encode:quotedprint

Results

BindingTypePredicate
varstringN/A

Examples

XML
<output>
<encode:quotedprint>Hello World!&n;My name is iXML!</encode:quotedprint>
</output>

<!-- Hello World!=0AMy name is iXML! -->