

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
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
- Related Questions & Answers
- Check whether the Unicode character is a lowercase letter in C#
- Check whether the specified Unicode character is a punctuation mark in C#
- Check whether the specified Unicode character is a letter or a decimal digit in C#
- Indicate whether the specified Unicode character is white space in C#
- Check whether a character is Uppercase or not in Java
- Check whether a character is Lowercase or not in Java
- Java Program to check whether the entered character is ASCII 7 bit numeric and character
- Java Program to check whether the character is ASCII 7 bit
- C++ Program to Check Whether a character is Vowel or Consonant
- Java Program to Check Whether a Character is Alphabet or Not
- Check whether the specified character has a surrogate code in C#
- C# Program to check if a character is a whitespace character
- Java Program to check whether the character is ASCII 7 bit numeric
- Java Program to check whether the character is ASCII 7 bit printable
- How to print Unicode character in C++?
Advertisements