plduhoux
2/24/2018 - 1:36 PM

replaceAllDigitsRegExp

String replaceAllDigitsRegExp(String input) {
    return input.replaceAll("[0-9]", "#");
}