in reply to Re: Regular Expression GUI?
in thread Regular Expression GUI?
Unsupported Syntax Some flavors of regular expression utilities support additional escape sequences, and this is not meant to be an exhaustive list. In the future, gnu.regexp may support some or all of the following:
(?:...) pure grouping operator (Perl5)
(?=...) positive lookahead operator (Perl5)
(?!...) negative lookahead operator (Perl5)
(?#...) embedded comment (Perl5)
(?mods) inlined compilation/execution modifiers (Perl5)
\G end of previous match (Perl5)
\b word break positional anchor (Perl5)
\B non-word break positional anchor (Perl5)
\< start of word positional anchor (egrep)
\> end of word positional anchor (egrep)
[.symbol.] collating symbol in class expression (POSIX)
[=class=] equivalence class in class expression (POSIX)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: JEdit's RE Tester. (boo)
by lachoy (Parson) on Apr 10, 2002 at 14:31 UTC | |
by mdillon (Priest) on Apr 10, 2002 at 16:01 UTC |