FORMULA LANGUAGE
Encodes a string into a URL-safe format.
Syntax
@URLEncode( encodingFormat ; token )
Parameters
encodingFormat
String arguments:
Converts non-ASCII characters into the specified character set and encodes the characters into %XX format, where XX is a hexadecimal digit representing the encoded value. Some examples include:
encodedURLString
Do not use @URLEncode to encode an entire URL string. For example, @URLEncode("Domino";"http://www.ibm.com/") returns "http%3A%2Fwww.ibm.com%2F," which would not link successfully to the desired website.
Example See Also