3
如何用崇高文本中的部分舊文本替換文本。在崇高文本中用正則表達式替換文本
我:
<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}
不工作
感謝。我誤以爲替換論點。 – NCNecros