What flavour of regular expression is grep?

前端 未结 6 1364
花落未央
花落未央 2021-02-03 23:41

I\'m guessing it\'s not a Perl Compatible Regular Expression, since there\'s a special kind of grep which is specifically PCRE. What\'s grep most simil

6条回答
  •  既然无缘
    2021-02-04 00:33

    There's a good write-up here. To quote the page, "grep is supposed to use BREs, except that grep -E uses EREs. (GNU grep fits some extensions in where POSIX leaves the behaviour unspecified)."

    In other words, it's a long story. ;)

提交回复
热议问题