System.Uri.IsHexEncoding 方法
方法描述
确定字符串中的一个字符是否为十六进制编码。
语法定义(C# System.Uri.IsHexEncoding 方法 的用法)
public static bool IsHexEncoding( string pattern, int index )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
pattern | System-String | 要检查的字符串。 |
index | System-Int32 | 检查十六进制编码的 pattern 中的位置。 |
返回值 | System.Boolean | 一个 Boolean 值。如果 pattern 在指定位置进行了十六进制编码,则该值为 true;否则为 false。 |
提示和注释
IsHexEncoding 方法检查字符串中遵循“%hexhex”模式的十六进制编码,其中的“hex”是 0 到 9 的数字或 A-F 的字母(不区分大小写)。
System.Uri.IsHexEncoding 方法例子
下面的代码示例确定一个字符是否为十六进制编码,如果是的话,则将等效字符输出到控制台。
string testString = "%75"; int index = 0; if (Uri.IsHexEncoding(testString, index)) Console.WriteLine("The character is {0}", Uri.HexUnescape(testString, ref index)); else Console.WriteLine("The character is not hexadecimal encoded");
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。