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
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name | decode:url |
Results
| Binding | Type | Predicate |
|---|---|---|
| var | string | N/A |
Examples
XML
<output>
<decode:url>My%20name%20is%20iXML%21</decode:url>
</output>
<!-- My name is iXML! -->