A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

正则表达式抽取特定字符串

3 个回复

倒序浏览
public class TestPatternFind {

    public static void main(String[] args) {
        String testString = "xxxxxxx1234xxxxxxx5678xxxxx12xxx1xxx";
        Matcher matcher = Pattern.compile("//d+").matcher(testString);
        while(matcher.find()){
            System.out.println( testString.substring(matcher.start(), matcher.end()) );
        }
        
        String testString2 = "${object.property}";
        Matcher matcher2 = Pattern.compile("^//$//{([a-zA-Z][a-zA-Z0-9//.]*)//}$").matcher(testString2);
        if(matcher2.matches()){
            System.out.println(matcher2.group(0));//抓取整个匹配字符串
            System.out.println(matcher2.group(1));//抓取在匹配字符串中,匹配正则表达式中()部分的字符串
        }

    }
}
回复 使用道具 举报
围观中………
回复 使用道具 举报
哎呦,很不错哦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马