Java trennen die Zahlen von der Zeichenfolge
// string contains numbers
String str = "The price of the book is $49";
// extract digits only from strings
String numberOnly = str.replaceAll("[^0-9]", "");
// print the digitts
System.out.println(numberOnly);
Magnificent Monkey Adi