java使用正则表达式

String str = "需要匹配的内容";
Pattern patern = Pattern.compile("正则表达式");

Matcher matStart = patern.matcher(str);
Matcher常用方法
matcher.matches():是否有匹配
matcher.find():是否找到匹配
matcher.group():返回匹配内容这个可以和上面的一同使用在while中循环所有匹配内容
matcher.group(int):如果在正则中有分组,使用这个返回分组内容,第一个为匹配到的内容,index为1以后的为分组内容
正​则​表​达​式​部​分​解​释: http://wenku.baidu.com/view/3556a7697e21af45b307a816.html

版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(java使用正则表达式)