数组搜索并替换Sublime Text的正则表达式

时间:2012-11-08 19:28:53

标签: regex sublimetext2

如何使用正则表达式搜索多个单词并用特定单词替换每个单词?在PHP中它将是:

$string = 'The quick bar foo jumps over the bazzy qux';
$patterns = array('foo', 'bar');
$replacements = array('baz', 'qux');
echo preg_replace($patterns, $replacements, $string);
// Outputs: The quick qux baz jumps over the bazzy qux

我想在Sublime Text中使用Boost语法进行搜索和替换(reference),这似乎是珍珠语法。

1 个答案:

答案 0 :(得分:0)

我会使用正则表达式启用搜索来查找所有单词然后点击查找全部。然后只需输入替换单词。对要替换的每个单词重复。