C#中的Char Struct
C#中的CharStruct将字符表示为UTF-16代码单元。这是一些方法-
Equals(Char)
Equals(Object)
GetNumericValue(Char)
IsLetter(String,Int32)
IsLetterOrDigit(Char)
让我们看一个实现Char.IsSymbol()方法的示例。指示C#中的Char.IsSymbol()方法是否将指定字符串中指定位置的字符归类为符号字符。
语法
以下是语法-
public static bool IsSymbol (string str, int index);
在上面,str是一个字符串,而要在str中求值的字符的位置。
示例
现在让我们看一个实现Char.IsSymbol()方法的示例-
using System; public class Demo { public static void Main(){ bool res; char val = 'P'; Console.WriteLine("Value = "+val); res = Char.IsSymbol(val); Console.WriteLine("Is the value a symbol? = "+res); } }
输出结果
这将产生以下输出-
Value = P Is the value a symbol? = False
C#中的Char.IsWhiteSpace()方法用于指示指定的Unicode字符是否为空格。
语法
以下是语法-
public static bool IsWhiteSpace (char ch);
上面的参数ch是要评估的Unicode字符。
示例
现在让我们看一个实现Char.IsWhiteSpace()方法的示例-
using System; public class Demo { public static void Main(){ bool res; char val = ' '; Console.WriteLine("Value = "+val); res = Char.IsWhiteSpace(val); Console.WriteLine("Is the value whitespace? = "+res); } }
输出结果
Value = Is the value whitespace? = True