public class Strings { public static String reduceToAlphaNumerics(String value) { return value.replaceAll("[^0-9a-zA-Z]+", " "); }}