Answers for "see if a string has a number in it"

C++
6

check if string contains numbers

str.matches(".*\\d.*");
Posted by: Guest on November-01-2020
3

how to check a number in string

To find whether a given string contains a number,
convert it to a character array and find whether 
each character in the array is a digit using the isDigit() 
method of the Character class
Posted by: Guest on June-22-2020

Code answers related to "see if a string has a number in it"

Browse Popular Code Answers by Language