- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 letter or a decimal digit in C#
To check whether the specified Unicode character is a letter or a decimal digit, the code is as follows −
Example
using System; public class Demo { public static void Main() { bool res; char val = '1'; Console.WriteLine("Value = "+val); res = Char.IsLetterOrDigit(val); Console.WriteLine("Is the value a letter or digit? = "+res); } }
Output
This will produce the following output −
Value = 1 Is the value a letter or digit? = True
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.IsLetterOrDigit(val); Console.WriteLine("Is the value a letter or digit? = "+res); } }
Output
This will produce the following output −
Value = $ Is the value a letter or digit? = False
Advertisements