HTMLDecode
Converts HTML-safe text to its original format by substituting 'safe' characters with their 'unsafe' equivalents.
Text converted using this function can be reverted to its 'safe' state using the HTMLEncode function.
Syntax
HTMLDecode( StringInput );
Parameters
| Parameter Name | Type | Description | Optional? | Default Value |
|---|---|---|---|---|
| StringInput | String | The string to convert. | No | n/a |
If the string you want to decode includes one or more semicolons, you should not include it in the function call literally, or the expression parser will treat each semicolon as the end of an expression, causing errors. One method of avoiding this is to assign the string to a keyword and then reference that keyword inside the function call.
Output
The decoded version of the supplied string.