Answers for "how to check whether given string is number or not in java"

2

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
0

java program to Check given String is contians number or not

public class ContainsExample {
   public static void main(String args[]){
      String sample = "krishna64";
      char[] chars = sample.toCharArray();
      StringBuilder sb = new StringBuilder();
      for(char c : chars){
         if(Character.isDigit(c)){
            sb.append(c);
         }
      }
      System.out.println(sb);
   }
Posted by: Guest on February-23-2022

Code answers related to "how to check whether given string is number or not in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language