What flavour of regular expression is grep?

前端 未结 6 1280
花落未央
花落未央 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:14

    There is no regular grep function in PHP. If you are referring to the ereg family of PHP functions then those are POSIX regular expressions. If you are referring to the Linux grep commandline utility, those are POSIX regular expressions as well. It supports both basic as well as extended POSIX regular expressions.

提交回复
热议问题