Skip to main content

Decode URL

XML
<decode:url var="var">
string
</decode:url>

<decode:url /> decodes a value according to RFC 3986 by replacing sequences incipient with a percent sign ('%') followed by a 2-character hexadecimal number with their applicable characters.

<decode:url /> is the complement of the <encode:url /> operation.

Attributes

NameTypeDescriptionDefined By
varvarResult variable name decode:url

Results

BindingTypePredicate
varstringN/A

Examples

XML
<output>
<decode:url>My%20name%20is%20iXML%21</decode:url>
</output>

<!-- My name is iXML! -->