Function
|
Return type
|
Description
|
url-decode
|
CHARACTER
|
Decodes a URL form input from either CGI POST and GET request methods or encoded Cookie values, and returns the decoded string.
|
url-encode
|
CHARACTER
|
Encodes unsafe characters in a URL (per RFC 1738 section 2.2) plus ASCII values between 0 and 31 and between 127 and 255. Options modify the encode to handle URL query strings, persistent cookies, or a specified string of characters. Returns the encoded string.
|
url-field-list
|
CHARACTER
|
Encodes a list of name/value pairs from a list of names whose values are retrievable from the current request by the get-value API function. Parameters include the name list and delimiter. Returns the encoded list of name/value pairs.
|
url-field
|
CHARACTER
|
Encodes name/value pairs for use as an argument field to a URL. Parameters include the name, value, and delimiter for the pair. Returns the encoded name/value pair.
|
url-format
|
CHARACTER
|
Formats a URL from a base URL, name list, and delimiter. (The name list is encoded using url-field-list.) Returns encoded URL.
|