vote up 3 vote down star
1

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 similar to?

Are there any special quirks of grep that I need to know about? (I'm used to Perl and the preg functions in PHP)

flag

2  
boisenberry.... – unknown (google) Jul 2 at 15:59
It is worth noting that grep (and its several flavors of regexs) predates perl and php by a considerable period. The question isn't "Why doesn't grep do what per does?" but "Why did perl choose to do something different that grep?". – dmckee Jul 2 at 16:02

6 Answers

vote up 7 vote down check

Default GNU grep behavior is to use a slightly flavorful variant on POSIX basic regular expressions, with a similarly tweaked species of POSIX extended regular expressions for egrep (usually aka grep -E). POSIX ERE is what PHP ereg() uses.

GNU grep also claims to support grep -P for PCRE, by the way. So no terribly special kind of grep required.

link|flag
I think GNU grep just support GNU BRE and GNU ERE. Because according to regular-expressions.info/refflavors.html/… POSIX BRE and POSIX ERE don’t support \w but GNU grep does. – Gumbo Jul 2 at 15:24
The "special" grep he's referring to might be ack, which deserves mention. – Chris Lutz Jul 8 at 23:04
vote up 6 vote down

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. ;)

link|flag
vote up 2 vote down

POSIX BRE (Basic Regular Expressions)

You can compare the various flavors here.

link|flag
Excellent link! – semiuseless Jul 2 at 15:42
@semiuseless: So upvote it? :) – Trampas Kirk Jul 2 at 15:47
Vote grubbing? Is that what we've come to? – Telemachus Jul 2 at 18:27
vote up 1 vote down

The grep man pages do a pretty thorough job of explaining the flavor of regexp available in grep. man grep is pretty useful.

link|flag
There is not enough RTFM on this site!! ;) man regex – RandomNickName42 Jul 14 at 18:00
vote up 1 vote down

Grep is an implementation of POSIX regular expressions. There are two types of posix regular expressions -- basic regular expressions and extended regular expressions. In grep, generally you use the -E option to allow extended regular expressions.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.