我正在尝试在Java中使用正则表达式
我想匹配所有不在<和>实例中的字符,以便可以将它们包装在另一个元素中
例如:
如果我的输入是:
<p><span>this should be matched</span></p><div>This too!</div>
然后匹配项应为“应该匹配”和“也要匹配!”
我希望能够像这样使用正则表达式:
input.replaceAll(regex, "<h1>$0</h1>");
并将其作为输出:
<p><span><h1>this should be matched</h1></span></p><div><h1>This too!</h1></div>
比赛被包裹在h1标签中