C# | Uri。IsHexDigit()方法
原文:https://www . geesforgeks . org/c-sharp-uri-ishexdigest-method/
乌利。IsHexDigit(Char)方法用于判断指定字符是否为有效的十六进制数字。十六进制数字是数字 0 到 9 和字母 A-F 或 a-f 。
语法:公共静态 bool IsHexDigit (char 字符); 在这里,需要角色来验证。
返回值:如果字符是有效的十六进制数字,该方法返回真,否则返回假。
下面的程序说明了 Uri 的使用。方法:
例 1:
// C# program to demonstrate the
// Uri.IsHexDigit(Char) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing address1
char ch = 'a';
// Validating the Character
// using IsHexDigit(Char) method
bool value = Uri.IsHexDigit(ch);
// Displaying the result
if (value)
Console.WriteLine("{0} is a valid Hexadecimal Digit", ch);
else
Console.WriteLine("{0} is a not valid Hexadecimal Digit", ch);
}
}
Output:
a is a valid Hexadecimal Digit
例 2:
// C# program to demonstrate the
// Uri.IsHexDigit(Char) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get('a');
get('.');
get('1');
}
// defining get() method
public static void get(char ch)
{
// Validating the Character
// using IsHexDigit(Char) method
bool value = Uri.IsHexDigit(ch);
// Displaying the result
if (value)
Console.WriteLine("{0} is a valid Hexadecimal Digit", ch);
else
Console.WriteLine("{0} is a not valid Hexadecimal Digit", ch);
}
}
Output:
a is a valid Hexadecimal Digit
. is a not valid Hexadecimal Digit
1 is a valid Hexadecimal Digit
参考:
版权属于:月萌API www.moonapi.com,转载请注明出处