Answers for "c# check if string contains letters which char is a letter"

C#
0

how to check that string has only alphabet in c#

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

Code answers related to "c# check if string contains letters which char is a letter"

C# Answers by Framework

Browse Popular Code Answers by Language