Android Phone Number Check checkPhone(String phone)

Here you can find the source of checkPhone(String phone)

Description

check Phone

Declaration

public static boolean checkPhone(String phone) 

Method Source Code

//package com.java2s;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
    public static boolean checkPhone(String phone) {
        Pattern pattern = Pattern.compile("^13/d{9}||15[8,9]/d{8}$");
        Pattern p = Pattern
                .compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
        Matcher matcher = p.matcher(phone);

        if (matcher.matches()) {
            return true;
        }/*w  ww.  j  av a2 s  .  com*/
        return false;
    }
}

Related

  1. isPhoneNumber(final String phone)
  2. isTelNumAvailable(String telNum)
  3. isMobile(String mobiles)
  4. isMobileNO(String phoneNum)
  5. isLegalPhoneNumber(String phoneNumber)
  6. isPhoneNumber(String phoneNum)