在项目中,我们尝试替换标签内的文本。 我们尝试从html文件中获取带有beanshell的字符串。
<code>
var testString = "<a href='test/keyword/common'>Here is our keyword which should be replaced</a><img src='test/keyword/again'/>
</code>
现在只应替换<code>a</code>
标签之间的关键字。
这可以用正则表达式或子字符串或其他东西吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
public static void main(String[] args) {
String string = "<code>var testString = <a href='test/keyword/common'>Here is our keyword which should be replaced</a><img src='test/keyword/again'/></code>";
string = string.replaceAll("(<code>.*?)Here is our keyword which should be replaced(.*?</code>)","$1Replaced with:$2");
System.out.println(string);
}
试试这个:这正是你想要的,但我也建议使用HTML解析器来解析HTML标签。