当前位置:编程学习 > JAVA >>

求2个正则表达式

tel:+867557780000  ————————tel:+ 不变。后面接纯数字
sip:userinfo@sina.com ----------   sip:+ 不变。后面接email --------------------编程问答-------------------- str.matches("tel:\\+\\d+");

str.matches("sip:\\+[\\w\\.@]+");
--------------------编程问答-------------------- String regex1 = "tel:\\+\\d+"
String regex2 = "sip:\\+(\\w+@\\w+\\.(com\\.cn)|\\w+@\\w+\\.(com|cn))"; --------------------编程问答-------------------- String phone = "tel:[.[+]]\\d{1,}+";
String email = "sip:[.[+]]\\w+@\\w+\\.\\w++$"; --------------------编程问答-------------------- 百度一下" 常用的正则表达式",度娘会告诉你di
补充:Java ,  Java EE
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,