Answers for "c# check if char is alphabet"

C#
0

how to check if the value is alphabet only in c#

Regex.IsMatch(input, @"^[a-zA-Z]+$");
Posted by: Guest on September-11-2020
0

how to check if the value is alphabet and numbers only only in c#

Regex.IsMatch(input, @"^[a-zA-Z0-9]+$");
Posted by: Guest on September-11-2020

Code answers related to "c# check if char is alphabet"

C# Answers by Framework

Browse Popular Code Answers by Language