![]() |
|
P is for Practical | |
PerlMonks |
comment on |
( #3333=superdoc: print w/replies, xml ) | Need Help?? |
(a-z_) should probably be ([a-z_]*), or better yet, (\w*).
You're asking for trouble by putting your pattern in a string before using it in a regex. To avoid multiple-quoting headaches, use qr like this:
In reply to Re: Complicated regexp problem
by Anonymous Monk
|
|