Horje
c# check characters in string Code Example
c# check characters in string
errorCounter = Regex.Matches(yourstring,@"[a-zA-Z]").Count;
c# check characters in string
//true if it doesn't contain letters
bool result = hello.Any(x => !char.IsLetter(x));




Csharp

Related
for loop Stringbuilder c# Code Example for loop Stringbuilder c# Code Example
C# get column of 2d array Code Example C# get column of 2d array Code Example
c# asp.net hover tooltip Code Example c# asp.net hover tooltip Code Example
how to minimum text length in textbox in c# Code Example how to minimum text length in textbox in c# Code Example
C# random.Next error Code Example C# random.Next error Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11