Check whether the Unicode character is a separator character in C#


To check whether the Unicode character is a separator character, the code is as follows −

Example

 Live Demo

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);
   }
}

Output

This will produce the following output −

Value = ,
Is the value a separator? = False

Example

Let us now see another example −

 Live Demo

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);
   }
}

Output

This will produce the following output −

Value =
Is the value a separator? = True

Updated on: 09-Dec-2019

126 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements