Regex.Unescape メソッド
入力文字列内にエスケープされた文字がある場合は、そのエスケープを解除します。
Public Shared Function Unescape( _
ByVal str As String _) As String
[C#]
public static string Unescape(stringstr);
[C++]
public: static String* Unescape(String* str);
[JScript]
public static function Unescape(
str : String) : String;
パラメータ
- str
変換対象のテキストを含んでいる入力文字列。
戻り値
エスケープされない形式に変換された、エスケープされた文字を含む文字列。
解説
たとえば、Unescape は\x61 を a に、\n を改行文字 (ASCII 10) に置換します。Unescape は、 Escape による変換を元に戻します。 Escape は、エスケープ解除された文字列内の文字が以前にエスケープされていたかどうかを類推できないため、 Unescape による変換を完全に元に戻すことはできません。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET