如何用崇高文本中的部分旧文本替换文本。
我有:
<span class="foo">some text</span>
<span class="foo">another text</span>
我想:
<b>some text</b>
<b>another text</b>
搜索
<span class="foo">(\w+)</span>
并替换为
{1}
不起作用
答案 0 :(得分:3)
搜索:<span class="foo">(.*?)</span>
替换:<b>$1</b>
答案 1 :(得分:1)
使用$ 1代替{1}替换文字