如何使用正则表达式搜索多个单词并用特定单词替换每个单词?在 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 语法进行搜索和替换(参考),这似乎是珍珠语法。