check if string contains only numbers c# code example

Example 1: c# check if string is only letters and numbers

if (textVar.All(c => Char.IsLetterOrDigit(c))) {
    // String contains only letters & numbers
}

Example 2: if string contains number c#

"abc3def".Any(c => char.IsDigit(c));

// Or to make it shorter:
"abc3def".Any(char.IsDigit);

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

if (str.All(char.IsDigit)) {
  Console.WriteLine("This string only contains numbers");
}

Example 4: c# check if string is all numbers

if (str.All(char.IsDigit)) {
  // String only contains numbers
}