使用正则表达式从字符串中查找子字符串

前端之家收集整理的这篇文章主要介绍了使用正则表达式从字符串中查找子字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

直接上代码

		String string = "asdasd#_%12.gifdadsa#_%2324.gif";
		String regx = "#_%\\d+.gif";
		Pattern pattern = Pattern.compile(regx,Pattern.CASE_INSENSITIVE);
		Matcher matcher = pattern.matcher(string);
		while(matcher.find()){
			System.out.println(matcher.group());
		}
原文链接:https://www.f2er.com/regex/361743.html

猜你在找的正则表达式相关文章