Answers for "get number from a string in java"

2

how to find a number in a string java

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-21-2022
4

how to get int from string java

// You will receive an error if there are non-numeric characters in the String.
String num = "5";
int i = Integer.parseInt(num);
Posted by: Guest on August-20-2020
1

java get number out of string

for(int i=0; i<yourString.length();i++) {
  if(Character.isDigit(yourString.charAt(i))) {
    // Do something with the number
    // For example convert it to int:
    int yourNumber = Integer.parseInt(String.valueOf(yourString.charAt(i)));
  }
}
Posted by: Guest on May-25-2021

Code answers related to "get number from a string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language