

- 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 specified Unicode character is a punctuation mark in C#
To check whether the specified Unicode character is a punctuation mark, the code is as follow −
Example
using System; public class Demo { public static void Main() { bool res; char val = 'q'; Console.WriteLine("Value = "+val); res = Char.IsPunctuation(val); Console.WriteLine("Is the value a punctuation? = "+res); } }
Output
This will produce the following output −
Value = q Is the value a punctuation? = False
Example
Let us see another example −
using System; public class Demo { public static void Main() { bool res; char val = ','; Console.WriteLine("Value = "+val); res = Char.IsPunctuation(val); Console.WriteLine("Is the value a punctuation? = "+res); } }
Output
This will produce the following output −
Value = , Is the value a punctuation? = True
- Related Questions & Answers
- Check if a character is a punctuation mark in Arduino
- Check whether the Unicode character is a separator character 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 the Unicode character is a lowercase letter in C#
- Check whether the specified character has a surrogate code in C#
- Unicode Byte Order Mark (BOM) character in HTML5 document.
- Match Unicode character specified by the hexadecimal number XXXX.
- Set whether a punctuation character may be placed outside the line box with CSS
- Check whether a String has only unicode digits in Java
- Check whether a character is Lowercase or not in Java
- Check whether a character is Uppercase or not in Java
- Convert the value of the specified string to its equivalent Unicode character in C#
- Java Program to check whether the character is ASCII 7 bit
- C++ Program to Check Whether a character is Vowel or Consonant
Advertisements