Home > Contents > Index >
ICS.URLDECODE
Decodes a
x-www-form-urlencoded
string.Syntax
<ICS.URLDECODE STR="string" [OUTPUT="output variable name"]/>Parameters
STR (required)
- The string to be decoded.
OUTPUT (optional)
- Specifies an optional output variable. If this parameter is not specified, the output is streamed to the browser.
Description
The
ics.urldecode
tag returns the given string decoded fromx-www-form-urlencoded
format. The decoding process is the exact reverse of the process performed byICS.URLENCODE
.The behavior of this tag is identical to invoking the
java.net.URLDecoder.decode(String)
method inside a JSP scriptlet.Error Numbers
There are no possible
errno
for this tag.Example
The following line would print
text/html
.<ICS.URLDECODE STR="text%2Fhtml"/>See Also
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.