Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Char.IsPunctuation() Method in C#
The Char.IsPunctuation() method in C# indicates whether the specified Unicode character is categorized as a punctuation mark.
Syntax
Following is the syntax −
public static bool IsPunctuation (char ch);
Above, ch is the Unicode character to evaluate.
Example
Let us now see an example to implement the Char.IsPunctuation() method −
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 now 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
Advertisements
