-E参数从结果中排除字符串

时间:2017-08-11 08:37:55

标签: regex bash

我们正在尝试为以下字符串创建正则表达式: -

$last_id . ' where ticket_id=' . $this->getId()  {

测试我们的正则表达式我们写了以下bash一行: -

echo "  $last_id . ' where ticket_id=' . $this->getId()  {"| grep -i -E  ".*(:?.*\$*.WHERE.*) " --color=auto;

结果是: -

. ' where ticket_id=' . ->getId()  {

预期结果: -

. ' where ticket_id=' . $this->getId()  {

但-E参数不包括$this。请帮助我们陷入困境。

0 个答案:

没有答案