我有一个看起来像这样的字符串:

String pathTokenString = "CMS/{brandPath}/Shows/{showPath}";


我想删除显示部分以及随后的所有内容。我还想用获得的令牌替换“ {brandPath}”。

这是我的方法。但是,我的字符串根本没有更新:

//remove the '/Shows/{showPath}'
pathTokenString = pathTokenString.replace("/Shows$", "");

//replace passed in brandPath in the tokenString
String answer = pathTokenString.replace("{(.*?)}", brandPath);


我的正则表达式有问题吗?

最佳答案

当您要传递正则表达式字符串作为要替换的模式时,应使用replaceAll方法而不是replace。另外,您的正则表达式模式也应更新:

pathTokenString = pathTokenString.replaceAll("/Shows.*$", "");

// The curly braces need to be escaped because they denote quantifiers
String answer = pathTokenString.replaceAll("\\{(.*?)\\}", brandPath);

08-03 16:47