Uri.HexUnescape メソッドとは? わかりやすく解説

Uri.HexUnescape メソッド

指定した 16 進数表現文字変換します

名前空間: System
アセンブリ: System (system.dll 内)
構文構文

例外例外
例外種類条件

ArgumentOutOfRangeException

index が 0 未満pattern含まれている文字数以上の値です。

解説解説

文字16 進エンコードかどうか判断し16 進エンコード場合は、対応する文字コンソール出力するコード例次に示します

Dim testString As String
 = "%75"
Dim index As Integer = 0
If Uri.IsHexEncoding(testString, 0) Then
    Console.WriteLine("The character is {0}", Uri.HexUnescape(testString,
 index))
Else
    Console.WriteLine("The character is not hexadecimal encoded")
End If
string testString = "%75";
int index = 0;
if (Uri.IsHexEncoding(testString, 0))
     Console.WriteLine("The character is {0}", Uri.HexUnescape(testString,
 ref index));
else
     Console.WriteLine("The character is not hexadecimal encoded");
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Uri.HexUnescape メソッド」の関連用語

Uri.HexUnescape メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Uri.HexUnescape メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS