java使用正则表达式验证示例:
public static void main(String[] args) {
Pattern p = Pattern.compile("^1[3|5|7|8][0-9]\\d{4,8}$");
Matcher m = p.matcher("验证内容");
System.out.println(m.matches());
if (!m.matches()) {
System.out.println("xxx");
}
}
javascript使用正则表达式验证示例:
var p=/^1[3|5|7|8][0-9]\\d{4,8}$/; alert(p.test(number)); if (p.test(number)) { //此处添加处理业务 } 原文链接:https://www.f2er.com/regex/360847.html