/主题/计算机。
在上面的字符串中我想消除/ topic /并使用正则表达式获取计算机。我尝试了[^ / topics /] \ w *,在这里我无法得到字符't','o','p','i','c'开头的字。我附上了我的代码在java中
Pattern pattern = Pattern.compile("[^\\/topics\\/]\\w+[a-z,A-Z]");
Matcher matcher = pattern.matcher(Url);
if (matcher.find()) {
Url = matcher.group();
}