Answers for "how to check string length is equal to certain number in java"

6

java how to find length of int

int x = 1234; 
int lengthOfInt = String.valueOf(x).length(); //convert integer to String
											  //and get length of the String
Posted by: Guest on November-25-2020
1

java how to check string is number

public static boolean isNumeric(String strNum) {
    if (strNum == null) {
        return false;
    }
    try {
        double d = Double.parseDouble(strNum);
    } catch (NumberFormatException nfe) {
        return false;
    }
    return true;
}
Posted by: Guest on August-10-2021

Code answers related to "how to check string length is equal to certain number in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language