标签:blog http ar sp java 2014 art log bs
java正则表达式通过java.util.regex包下的Pattern和Matcher类实现
1:构造一个模式:Pattern p = Pattern.compile("\\d+");
2:建立一个匹配器:Matcher m = p.matcher(str);
3:得到结果 。进行判断:boolean b = m.matches();
matcher.matches()对整个字符串进行匹配,只有整个字符串都匹配了才返回true
matcher.find()尝试查找与该模式匹配的输入序列的下一个子序列,成功返回true
matcher.start() 返回匹配到的子字符串在字符串中的索引位置.
matcher.end()返回匹配到的子字符串的最后一个字符在字符串中的索引位置.
matcher.group()返回匹配到的子字符串
m.find()第一次匹配到18000391410 返回true 循环
第二次匹配到 13795733025 返回true 循环
第三次m.find()返回false。退出whie循环
标签:blog http ar sp java 2014 art log bs
原文地址:http://www.cnblogs.com/lulup/p/4164836.html