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