常见正则表达式——工具类(手机号,邮箱,QQ,传真)
2022/1/6 6:13:13
本文主要是介绍常见正则表达式——工具类(手机号,邮箱,QQ,传真),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
常见正则表达式——工具类(手机号,邮箱,QQ,传真)
- 一、前台验证
- 二、后台验证
一、前台验证
待完善
二、后台验证
/** * 使用正则表达式进行数据验证 */ public class RegexValidateUtil { static boolean flag = false; static String regex = ""; public static boolean check(String str, String regex) { try { Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(str); flag = matcher.matches(); } catch (Exception e) { flag = false; } return flag; } /** * 验证邮箱 * @param email * @return */ public static boolean checkEmail(String email) { String regex = "^\\w+[-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$ "; return check(email, regex); } /** * 验证手机号码 * * 移动号码段:139、138、137、136、135、134、150、151、152、157、158、159、182、183、187、188、147 * 联通号码段:130、131、132、136、185、186、145 * 电信号码段:133、153、180、189、17 * * @param phone * @return */ public static boolean checkphone(String phone) { String regex = "^((13[0-9])|(14[0,1,4-9])|(15([0-3,5-9]))|(16[2,5,6,7])|(17[0-8])|(18[0-9]))|(19[0-3,5-9])\\d{8}$"; return check(phone, regex); } /** * 验证固话号码 * @param telephone * @return */ public static boolean checkTelephone(String telephone) { String regex = "^(0\\d{2}-\\d{8}(-\\d{1,4})?)|(0\\d{3}-\\d{7,8}(-\\d{1,4})?)$"; return check(telephone, regex); } /** * 验证传真号码 * @param fax * @return */ public static boolean checkFax(String fax) { String regex = "^(0\\d{2}-\\d{8}(-\\d{1,4})?)|(0\\d{3}-\\d{7,8}(-\\d{1,4})?)$"; return check(fax, regex); } /** * 验证QQ号码 * @param QQ * @return */ public static boolean checkQQ(String QQ) { String regex = "^[1-9][0-9]{4,} $"; return check(QQ, regex); } }
这篇关于常见正则表达式——工具类(手机号,邮箱,QQ,传真)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-09-11正则表达式学习:入门指南与实践技巧
- 2024-08-15正则表达式入门:基础教程与实践指南
- 2024-01-0939. 干货系列从零用Rust编写负载均衡及代理,正则及格式替换
- 2024-01-08如何编写高效的正则表达式?
- 2023-12-29"Matlab中的正则表达式:强大而灵活的工具"
- 2023-09-30这个正则 为啥同样的单号第二个就提取不出来?
- 2023-06-086.2 re 正则表达式
- 2023-06-06将字符串里的\x01,\x02这些替换掉用正则表达式无效?
- 2023-05-24正则表达式详解
- 2023-05-17我让gpt写了一段正则表达式代码,可是运行报错,可以帮忙看看哪里出了问题?