在 Dreamweaver 中搜索并替换为正则表达式
Search and replace with regex in dreamweaver
谁能帮我关注
我有几个变量,比如
$customer = $this->input->post('UserId_2');
我需要替换成
$customer = $this->input->post('UserId_2', TRUE);
我正在使用以下 RegEx 搜索匹配所有出现的项
$this->input->post\(\'\w*\'\);
但是我无法替换。我试过 $1 但没有用
您没有捕获组,因此 </code> 为空。使用:</p>
<pre><code>$this->input->post\('(\w*)'\);
与
$this->input->post('', TRUE);
谁能帮我关注
我有几个变量,比如
$customer = $this->input->post('UserId_2');
我需要替换成
$customer = $this->input->post('UserId_2', TRUE);
我正在使用以下 RegEx 搜索匹配所有出现的项
$this->input->post\(\'\w*\'\);
但是我无法替换。我试过 $1 但没有用
您没有捕获组,因此 </code> 为空。使用:</p>
<pre><code>$this->input->post\('(\w*)'\);
与
$this->input->post('', TRUE);