Answers for "check if string only contains numbers"

5

check if string contains numbers

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

python how to check if string contains only numbers

print("012345".isdecimal())
OUTPUT
True
print("a12345".isdecimal())
OUTPUT
False
Posted by: Guest on September-24-2020

Code answers related to "check if string only contains numbers"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language