Javaを使用した正規表現を使用して、ダッシュ「-」を除外し、電話番号を表す文字列から丸括弧を開くことができます...
したがって、(234)887-9999は2348879999を与え、同様に234-887-9999は2348879999を与えます。
おかげで、
_phoneNumber.replaceAll("[\\s\\-()]", "");
_
正規表現は、任意の空白文字(_\s
_、文字列で渡されているため_\\s
_としてエスケープされます)、ダッシュ(ダッシュは、文字クラスのコンテキスト)、および括弧。
String.replaceAll(String, String)
を参照してください。
[〜#〜]編集[〜#〜]
gunslinger47 あたり:
_phoneNumber.replaceAll("\\D", "");
_
非数字を空の文字列に置き換えます。
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;
}