检查 Unicode 字符是否是 C# 中的分隔符
以下代码用于检查 Unicode 字符是否是分隔符 −
示例
using System; public class Demo { public static void Main(){ bool res; char val = ','; Console.WriteLine("Value = "+val); res = Char.IsSeparator(val); Console.WriteLine("Is the value a separator? = "+res); } }
产出
这会产生以下输出 −
Value = , Is the value a separator? = False
示例
现在让我们看另一个示例 −
using System; public class Demo { public static void Main(){ bool res; char val = ' '; Console.WriteLine("Value = "+val); res = Char.IsSeparator(val); Console.WriteLine("Is the value a separator? = "+res); } }
产出
这会产生以下输出 −
Value = Is the value a separator? = True
广告