C# 中的 Char.IsPunctuation() 方法
C# 中的 Char.IsPunctuation() 方法用于指示指定 Unicode 字符是否归类为标点符号。
语法
以下是语法 −
public static bool IsPunctuation (char ch);
以上,ch 是要评估的 Unicode 字符。
示例
现在,让我们看一个实现 Char.IsPunctuation() 方法的示例 −
using System; public class Demo { public static void Main(){ bool res; char val = 'q'; Console.WriteLine("Value = "+val); res = Char.IsPunctuation(val); Console.WriteLine("Is the value a punctuation? = "+res); } }
输出
这会产生以下输出 −
Value = q Is the value a punctuation? = False
示例
现在,让我们看另一个示例 −
using System; public class Demo { public static void Main(){ bool res; char val = ','; Console.WriteLine("Value = "+val); res = Char.IsPunctuation(val); Console.WriteLine("Is the value a punctuation? = "+res); } }
输出
这会产生以下输出 −
Value = , Is the value a punctuation? = True
广告