前端之家收集整理的这篇文章主要介绍了
验证 手机号码 固话号码 邮箱和特殊符号,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.text.TextUtils;
public class MobileNo {
/**
* 验证手机格式
*/
public static boolean isMobileNO(String mobiles) {
/*
* 移动:134、135、136、137、138、139、150、151、157(TD)、158、159、187、188
* 联通:130、131、132、152、155、156、185、186 电信:133、153、180、189、(1349卫通)
* 总结起来就是第一位必定为1,第二位必定为3或5或8,其他位置的可以为0-9
*/
String telRegex = "[1][358]\\d{9}";// "[1]"代表第1位为数字1,"[358]"代表第二位可以为3、5、8中的一个,"\\d{9}"代表后面是可以是0~9的数字,有9位。
if (TextUtils.isEmpty(mobiles))
return false;
else
return mobiles.matches(telRegex);
}
/**
* 验证特殊符号
* */
public static boolean isSymbol(String symbol) {
String regex = "[A-Za-z0-9\u4e00-\u9fa5;;]+";
if (TextUtils.isEmpty(symbol))
return false;
else
return symbol.matches(regex);
}
public static boolean isNumber(String str) {
String regex = "[0-9]*";
if (TextUtils.isEmpty(str))
return false;
else
return str.matches(regex);
}
/**
* 判断固定电话格式
* */
public static boolean isTelephone(String tel) {
String str = "[0]{1}[0-9]{2,3}-[0-9]{7,8}$";
Pattern p = Pattern.compile(str);
Matcher m = p.matcher(tel);
return m.matches();
}
/**
* 判断邮箱格式
* */
public static boolean isEmail(String email) {
String str = "^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$";
Pattern p = Pattern.compile(str);
Matcher m = p.matcher(email);
return m.matches();
}
}
原文链接:https://www.f2er.com/regex/360529.html