remove all but numbers from string java code example
Example 1: java remove non numbers from string
String str = "a12.334tyz.78x";
str = str.replaceAll("[^\\d.]", "");
Example 2: how to remove numbers from string java
Extract numbers from a string
Character.isDigit(str.charAt(i))
Character.isLetter(str.charAt(i))
Character.isAlphabetic(str.charAt(i))
String password = "cnE4g1Z5y9A";
String[] letters= password.split("[0-9]"); ==> cnEgZyA
String[] letters= password.split("[A-Za-z]"); ==> 4159