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