DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Command: UnEscapeDatastring

Display all  Hide all

Command: UnEscapeDatastring

Decodes the texts encoded with the EscapeDataString command.

ReturnValue = UnEscapeDatastring(URLEscapedDataString)

Input Parameters

URLEscapedDataString 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.

VBScriptPython

 

UrlDataString = "abcde :// ????????"

UrlEscapedDataString = EscapeDataString(UrlDataString)
Call LogfileWrite(UrlEscapedDataString)

UrlDataString = UnescapeDataString(UrlEscapedDataString)
Call LogfileWrite(UrlDataString)
 
Was this information helpful?