Char.IsSeparator () Method in C#


The Char.IsSeparator() method in C# indicates whether the specified Unicode character is categorized as a separator character.

Syntax

Following is the syntax −

public static bool IsSeparator (char ch);

Above. ch is the Unicode character to evaluate.

Example

Let us now see an example to implement the Char.IsSeparator() method −

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 −

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: 13-Nov-2019

87 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements