【发布时间】:2014-09-07 20:51:09
【问题描述】:
如何用 sublime text 中的部分旧文本替换文本。
我有:
<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}
不工作
【问题讨论】:
标签: regex sublimetext2 sublimetext3 text-processing