Answers for "how to see if character in string is number c#"

C#
6

c# check if string is only letters and numbers

if (textVar.All(c => Char.IsLetterOrDigit(c))) {
    // String contains only letters & numbers
}
Posted by: Guest on May-19-2020
2

c# how do you check if a string contains only digits

if (str.All(char.IsDigit)) {
  Console.WriteLine("This string only contains numbers");
}
Posted by: Guest on November-08-2020

Code answers related to "how to see if character in string is number c#"

C# Answers by Framework

Browse Popular Code Answers by Language