从String中识别并获取手机号码

时间:2015-10-05 08:03:36

标签: java android string substring

我需要从字符串中提取手机号码。我从字符串中提取了数字,但未能得到我需要的数据。

以下是输入:字符串包含地址和电话号码。

String input = "Street1,Punjab Market-Patiala 147001 M:92166-29903"

我需要提取手机号码,即92166-29903

我使用此方法检查字符串是否包含手机号码:

private Boolean isMobileAvailable(String string)
{
    Boolean ismobile = false;
    if (string.matches("(?i).*M.*"))
    {
        ismobile = true;
    } 
    return ismobile;
}

在代码中使用如下:

String mobilenumber="";

private void getMobileNumber(String sample)
{
    int index = sample.indexOf("M");
    String newString = "";
    newString = sample.substring(index, sample.length());
    mobileNumber = newString.replaceAll("[^0-9]", "");
    edtMobile.setText(mobileNumber.substring(0, 10));
}

此处,我收到的是147009211

,而不是手机号码

如何从上面的字符串中正确识别手机号码?

2 个答案:

答案 0 :(得分:0)

int index = sample.lastIndexOf("M");
String newString = sample.substring(index+2, sample.length());
mobileNumber = newString.replaceAll("[^0-9]", "");
edtMobile.setText(mobileNumber.substring(0, 10));

如果您想在结果中使用“ - ”,只需删除左mobileNumber = newString.replaceAll("[^0-9]", "");

即可

答案 1 :(得分:0)

试试这段代码。 方法1:

  StringBuffer reverseString=new StringBuffer(input);
    StringBuffer s1=reverseString.reverse();
    int firstindex=s1.indexOf(":");
    String finalstring=s1.substring(0, firstindex);
    StringBuffer getexactstring=new StringBuffer(finalstring);

方法2:

label.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.7]

此代码会为您提供所需的确切手机号码。