使用正则表达式在java中提取子字符串

前端之家收集整理的这篇文章主要介绍了使用正则表达式在java中提取子字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从字符串中提取“URPlus1_S2_3”:
"Last one: http://abc.imp/Basic2#URPlus1_S2_3,"

在Java语言中使用正则表达式.

有人可以帮帮我吗?我是第一次使用正则表达式.

尝试
Pattern p = Pattern.compile("#([^,]*)");
Matcher m = p.matcher(myString);
if (m.find()) {
  doSomethingWith(m.group(1));  // The matched substring
}
原文链接:https://www.f2er.com/regex/357303.html

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