在Dreamweaver中搜索并用正则表达式替换

时间:2018-11-14 13:54:17

标签: php regex dreamweaver

有人可以帮助我关注

我有几个变量,例如

$customer = $this->input->post('UserId_2');

我需要替换为

$customer = $this->input->post('UserId_2', TRUE);

我正在使用以下RegEx搜索与所有匹配项匹配的

\$this->input->post\(\'\w*\'\);

但是我无法替代。我尝试过$ 1,但无济于事

1 个答案:

答案 0 :(得分:1)

您没有捕获组,因此$1为空。使用:

\$this->input->post\('(\w*)'\);

使用

$this->input->post('$1', TRUE);

DW Screenshot