Answers for "validate double or float from string in java"

1

test if string is float java

public static void main(String[] args) {
    String str = "5588";
    //check if int
    try{
        Integer.parseInt(str);
    }catch(NumberFormatException e){
        //not int
    }
    //check if float
    try{
        Float.parseFloat(str);
    }catch(NumberFormatException e){
        //not float
    }
}
Posted by: Guest on December-13-2020
1

how to check if string is double or not in java

String decimalPattern = "([0-9]*)\\.([0-9]*)";  
String number="20.00";  
boolean match = Pattern.matches(decimalPattern, number);
System.out.println(match); //if true then decimal else not
Posted by: Guest on October-01-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language