keep only digits in string java code example Example: java remove non numbers from string String str = "a12.334tyz.78x"; str = str.replaceAll("[^\\d.]", "");