Remove dash from a phone number

后端 未结 2 1954
面向向阳花
面向向阳花 2020-12-24 12:45

What regular expression using java could be used to filter out dashes \'-\' and open close round brackets from a string representing phone numbers...

so that (234) 8

相关标签:
2条回答
  • 2020-12-24 13:07
    phoneNumber.replaceAll("[\\s\\-()]", "");
    

    The regular expression defines a character class consisting of any whitespace character (\s, which is escaped as \\s because we're passing in a String), a dash (escaped because a dash means something special in the context of character classes), and parentheses.

    See String.replaceAll(String, String).

    EDIT

    Per gunslinger47:

    phoneNumber.replaceAll("\\D", "");
    

    Replaces any non-digit with an empty string.

    0 讨论(0)
  • 2020-12-24 13:10
        public static String getMeMyNumber(String number, String countryCode)
        {    
             String out = number.replaceAll("[^0-9\\+]", "")        //remove all the non numbers (brackets dashes spaces etc.) except the + signs
                            .replaceAll("(^[1-9].+)", countryCode+"$1")         //if the number is starting with no zero and +, its a local number. prepend cc
                            .replaceAll("(.)(\\++)(.)", "$1$3")         //if there are left out +'s in the middle by mistake, remove them
                            .replaceAll("(^0{2}|^\\+)(.+)", "$2")       //make 00XXX... numbers and +XXXXX.. numbers into XXXX...
                            .replaceAll("^0([1-9])", countryCode+"$1");         //make 0XXXXXXX numbers into CCXXXXXXXX numbers
             return out;
    
        }
    
    0 讨论(0)
提交回复
热议问题