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