求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