正则表达式抠出指定内容

前端之家收集整理的这篇文章主要介绍了正则表达式抠出指定内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

抠出http://127.0.0.1/forum/{name}/index.html 中的变量

public static void main(String[] args) {

String str = "http://127.0.0.1/forum/zhengweilin/index.html";
Pattern pattern = Pattern.compile("http://127.0.0.1/forum/(.+)/index.html");
Matcher matcher = pattern.matcher(str);
while(matcher.find()){
System.out.println(matcher.group(1));
}

}

欢迎加入我的技术交流群425783133

原文链接:https://www.f2er.com/regex/358253.html

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