我需要从字符串中提取“URPlus1_S2_3”:
"Last one: http://abc.imp/Basic2#URPlus1_S2_3,"
在Java语言中使用正则表达式.
有人可以帮帮我吗?我是第一次使用正则表达式.
尝试
原文链接:https://www.f2er.com/regex/357303.htmlPattern p = Pattern.compile("#([^,]*)"); Matcher m = p.matcher(myString); if (m.find()) { doSomethingWith(m.group(1)); // The matched substring }