vote up 1 vote down star
1

I use vim, sed, bash and Perl. Each has somewhat different regex syntax. I just spent time finding that I need to escape the curly parens in sed, but not in BASH (when using them as counter elements). Grrr.

Can anybody point me to a table that summarizes the differences between the different regex parsers in these 4 environments.

TIA

flag

79% accept rate
In addition to these answers: Mastering regular expressions is an excellent resource! oreilly.com/catalog/9780596528126 – LFSR Consulting Mar 27 at 22:24

2 Answers

vote up 6 vote down check

http://www.regular-expressions.info/refflavors.html - scroll down a bit.

Bash uses posix regexes. Sed and vim (which uses ed) use what are listed as "GNU BRE", although this depends on what flags you pass.

link|flag
vote up 1 vote down

Jan Goyvaerts.'s site regular-expressions.info has a listing of popular regex engines and which options they support.

link|flag

Your Answer

Get an OpenID
or

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