Answers for "how to check the number of characters in a string c#"

C#
0

find character from string c# count

int count = Regex.Matches(test, "word").Count;
Posted by: Guest on December-02-2020
-1

c# check characters in string

//true if it doesn't contain letters
bool result = hello.Any(x => !char.IsLetter(x));
Posted by: Guest on March-04-2021

Code answers related to "how to check the number of characters in a string c#"

C# Answers by Framework

Browse Popular Code Answers by Language