我有一长串。我想用匹配的正则表达式(组)的一部分替换所有匹配项。
例如:
String = "This is a great day, is it not? If there is something, THIS IS it. <b>is</b>".
我想"is"
用,比方说,替换所有的词"<h1>is</h1>"
。案件应与原案保持一致。所以我想要的最后一个字符串是:
This <h1>is</h1> a great day, <h1>is</h1> it not? If there <h1>is</h1> something,
THIS <h1>IS</h1> it. <b><h1>is</h1></b>.
我正在尝试的正则表达式:
Pattern pattern = Pattern.compile("[.>, ](is)[.<, ]", Pattern.CASE_INSENSITIVE);