正则提取数字
public static String ExtractNumber(String phoneString){
Pattern pattern = Pattern.compile("[^0-9]");
Matcher matcher = pattern.matcher(phoneString);
//将与模式匹配的输入序列的每个子序列替换为给定的替换字符串。
String number= matcher.replaceAll("");
return number;
}
String abc = Pattern.compile("[^0-9]").matcher(phoneString).replaceAll("");