从电话号码中删除破折号

2022-09-01 11:18:10

使用java的正则表达式可以用来过滤掉短划线“-”,并从表示电话号码的字符串中打开右圆括号......

因此,(234)887-9999应该给出2348879999同样,234-887-9999应该给出2348879999。

谢谢


答案 1
phoneNumber.replaceAll("[\\s\\-()]", "");

正则表达式定义了一个字符类,该字符由任何空格字符(由于我们在字符串中传递而转义)、破折号(转义是因为短划线在字符类的上下文中表示特殊内容)和括号组成。\s\\s

请参阅 String.replaceAll(String, String)。

编辑

每个枪手47

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

将任何非数字替换为空字符串。


答案 2
    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;

    }