import java.util.regex.Pattern; import java.util.regex.Matcher; public class RegexDemo { private static String REGEX = "a*b"; private static String INPUT = "aabfooaabfooabfoob"; private static String REPLACE = "-"; public static void main(String[] args) { Pattern p = Pattern.compile(REGEX); Matcher m = p.matcher(INPUT); // 获得匹配器对象 StringBuffer sb = new StringBuffer(); while(m.find()){ m.appendReplacement(sb, REPLACE); } m.appendTail(sb); System.out.println(sb.toString()); } }
最近下载更多
smiledog LV2
2021年1月29日
pyg123456 LV1
2020年12月29日
luohaipeng LV23
2019年11月20日
helenjiang LV1
2019年8月21日
低调人 LV38
2019年8月4日
yyyyyyyyyyyyyyyyyyy LV16
2019年7月3日
silenceS LV4
2018年10月5日
tztony LV1
2018年7月11日
free2322222223 LV1
2018年7月3日
zhuozhi LV2
2018年4月29日
最近浏览更多
NeneAnegsaki LV2
2022年4月24日
yiyiyi55555 LV1
2021年10月22日
金玉博 LV1
2021年9月6日
smiledog LV2
2021年1月29日
yuzhiyuan1977 LV2
2021年1月5日
pyg123456 LV1
2020年12月29日
LiXin1994 LV1
2020年12月9日
gan857569302 LV9
2020年6月23日
lichengai LV7
2020年5月1日
luohaipeng LV23
2019年11月20日