检查 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

更新于: 09-12-2019

177 次查看

开启你的职业生涯

通过完成课程获得认证

开始学习
广告