in reply to Re: Why aren't perl regular expressions really regular expressions?
in thread Why aren't perl regular expressions really regular expressions?
AFAIK are tools and languages claiming "Perl-compatible" regular expression based on the same same PCRE library and are hence compatible to each other.
The problem is rather that PCRE isn't fully compatible to Perl, they rather try to mimic the incompatibilities in syntax to POSIX RegExes Gnu Basic RegExes and some added features Larry included into Perl.
I.o.W the syntax looks compatible but the results may not in edge cases.
recommended read Friedl's "Mastering Regular Expression" from O'Reilly.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Why aren't perl regular expressions really regular expressions?
by AppleFritter (Vicar) on Mar 17, 2015 at 18:51 UTC | |
by LanX (Saint) on Mar 17, 2015 at 20:35 UTC | |
by Dumu (Monk) on Mar 18, 2015 at 10:32 UTC | |
Re^3: Why aren't perl regular expressions really regular expressions?
by Dumu (Monk) on Mar 18, 2015 at 10:09 UTC | |
by LanX (Saint) on Mar 19, 2015 at 01:23 UTC |