Command: UnEscapeDatastring
- Updated2024-09-12
- 1 minute(s) read
Command: UnEscapeDatastring
Command: UnEscapeDatastring
Decodes the texts encoded with the EscapeDataString command.
Input Parameters
![]() |
Specifies the text to be decoded |
Return Parameters
ReturnValue | The return value is a String type. Receives the decoded text. |
The following example encodes and decodes a text and outputs it in the log area.
VBScript | Python |
UrlDataString = "abcde :// ????????" UrlEscapedDataString = EscapeDataString(UrlDataString) Call LogfileWrite(UrlEscapedDataString) UrlDataString = UnescapeDataString(UrlEscapedDataString) Call LogfileWrite(UrlDataString)