Answers for "check if strign is a digit"

0

check if the given string is a number

//Add this to your code and call
static private boolean isMyNumber(String s){
        try{
            Integer.parseInt(s);
            return true;
        }catch (Exception e){
            return false;
        }
    }
Posted by: Guest on December-29-2020
0

python check if number contains digit

for number in numbers:
    if '4' in str(number):
        print('{} True'.format(number))
    else:
        print("False")
Posted by: Guest on September-01-2021

Code answers related to "check if strign is a digit"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language