1 String s ="我的QQ是:456456 我的电话是:17123456789 我的邮箱是:aaa123@aaa.com"; 2 Pattern p = Pattern.compile("((17\d)|(18\d))\d{8}"); 3 Matcher m = p.matcher(s); 4 while (m.find()) { 5 System.out.println(m.group()); 6 }
1 String s ="我的QQ是:456456 我的电话是:17123456789 我的邮箱是:aaa123@aaa.com"; 2 Pattern p = Pattern.compile("((17\d)|(18\d))\d{8}"); 3 Matcher m = p.matcher(s); 4 while (m.find()) { 5 System.out.println(m.group()); 6 }