Answers for "java how to check if there are integers in a string"

9

java test if a string is a int

public static boolean isInt(String str) {
	
  	try {
      	@SuppressWarnings("unused")
    	int x = Integer.parseInt(str);
      	return true; //String is an Integer
	} catch (NumberFormatException e) {
    	return false; //String is not an Integer
	}
  	
}
Posted by: Guest on May-28-2020
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 "java how to check if there are integers in a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language