ZennoLab Assemblies Documentation
UrlDecode Method
Example 

Type: System.String

The source string.

Decodes the string from UrlEncode.
Syntax
public static string UrlDecode( 
   string sourceString
)

Parameters

sourceString

Type: System.String

The source string.

Return Value

Type: System.String

A decoded string.

Example
The following example shows call the UrlDecode method.
var result = Macros.TextProcessing.UrlDecode("d182d0b5d0bad181d182");
return result;
 
// result = "текст"
$result = Macros::TextProcessing::UrlDecode("d182d0b5d0bad181d182");
return $result;
 
// result = "текст"
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

TextProcessing Class
TextProcessing Members
UrlEncode Method

Send Feedback