2014-07-17 96 views
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} 

不工作

回答

2

搜索:<span class="foo">(.*?)</span>

替換:<b>$1</b>

+0

感謝。我誤以爲替換論點。 – NCNecros

1

使用$ 1而不是{1}替換文本

相關問題