web-dev-qa-db-ja.com

電話番号からダッシュを削除

Javaを使用した正規表現を使用して、ダッシュ「-」を除外し、電話番号を表す文字列から丸括弧を開くことができます...

したがって、(234)887-9999は2348879999を与え、同様に234-887-9999は2348879999を与えます。

おかげで、

27
zoom_pat277
_phoneNumber.replaceAll("[\\s\\-()]", "");
_

正規表現は、任意の空白文字(_\s_、文字列で渡されているため_\\s_としてエスケープされます)、ダッシュ(ダッシュは、文字クラスのコンテキスト)、および括弧。

String.replaceAll(String, String) を参照してください。

[〜#〜]編集[〜#〜]

gunslinger47 あたり:

_phoneNumber.replaceAll("\\D", "");
_

非数字を空の文字列に置き換えます。

66
Vivin Paliath
    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;

    }
4
Tharaka Devinda