Answers for "check if string has number c#"

C#
12

c# how to check string is number

string s1 = "123";
string s2 = "abc";

bool isNumber = int.TryParse(s1, out int n); // returns true
isNumber = int.TryParse(s2, out int n); // returns false
Posted by: Guest on August-23-2020
3

if string contains number c#

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

// Or to make it shorter:
"abc3def".Any(char.IsDigit);
Posted by: Guest on August-23-2020
3

c# check if string is all numbers

if (str.All(char.IsDigit)) {
  // String only contains numbers
}
Posted by: Guest on May-13-2020

Code answers related to "check if string has number c#"

C# Answers by Framework

Browse Popular Code Answers by Language