标签:print bubuko find java正则 image 正则表达 pattern span nbsp
Pattern编译正则表达式,Matcher类为封装结果
String str="匹配小数2.1,整数33,以及字母和数字的组合fsd535,但是.也可以匹配9点8,因为.代表任意字符?"; String s = "\\d+.\\d+|\\w+"; //.代表任意字符,匹配项为 数字[1,]任意字符[1]数字[1,]/字母和数字的组合[1,] Pattern pattern= Pattern.compile(s); Matcher ma=pattern.matcher(str); while(ma.find()){ System.out.println(ma.group()); }
输出
标签:print bubuko find java正则 image 正则表达 pattern span nbsp
原文地址:https://www.cnblogs.com/aeolian/p/9233262.html