notepad++正则表达式结果删除()

notepad++ regular expression result deleted ()

我正在尝试为字符串添加前缀:

            array(
                'id'=>'page-comment',
                'type' => 'switch',
                'title' => 'Show Comment Form on Page',
                'default' => '0',
                'on' => 'Yes',
                'off' => 'No',
            ),

替换:'title' => '(.*)'

至:'title' => __('', 'venedor')

结果

'title' => __'Show Comment Form on Page', 'venedor',

我需要字符()保持不变。 行应该看起来像 result

'title' => __('Show Comment Form on Page', 'venedor'),

你很接近,即使在替换部分也必须转义括号:

'title' => __\('', 'venedor'\)

这是一个 Npp "feature"