unescape
IMPORTANT!
Starting with v24.3, this is deprecated.
Starting with v24.3, this is deprecated.
Converts an escape-encoded string into a decoded string by replacing the hexadecimal escape sequences with their corresponding characters. Also see escape.
Syntax
function unescape(string: string): string
| Parameter | Description |
|---|---|
string
|
Escape-encoded string you wish to unescape. |
Return Value
Returns the unescaped string.
Examples
In this example, we unencode the Hello%21%0AWelcome to FintechOS... message in a string variable called message.
var message = unescape('Hello%21%0AWelcome to FintechOS. Here you can find%3A%0A%09Sudio%0A%09Apps%0A%09Automation Processors');