in reply to RE (tilly) 2: Regex'ing backreferences
in thread Regex'ing backreferences
The general pattern behind unrolling the loop is to get your regex to look something like OK* ( NOTOK OK* )*.m{ foo ( # save to $1 [^b]* # 0 or more non-b characters (?: b+ # 1 or more b's (?: a(?!r) # an 'a' NOT followed by an 'r' | # or [^a] # a non-a character ) [^b]* # 0 or more non-b characters )* # that whole b... subset, 0 or more times ) foo # and foo }x;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE (tilly) 4: Regex'ing backreferences
by tilly (Archbishop) on Sep 21, 2000 at 16:10 UTC | |
|
RE (tilly) 4 (good try): Regex'ing backreferences
by tilly (Archbishop) on Sep 21, 2000 at 18:23 UTC | |
by japhy (Canon) on Sep 21, 2000 at 18:28 UTC |