in reply to commenting regular expressions?
Did you use the /x modifier?
I see white space in your regexes. If you use /x, you have to escape the white space or it gets ignored.
For example (untested):
and so forth...qr{<PgfTag [ ] # this matches a space 'Normal \ # the backslash ought to escape the space \\(T\)'> ...
yours,
Michael
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: commenting regular expressions?
by SeekerOKnowledge (Initiate) on Sep 04, 2003 at 18:08 UTC | |
by Anonymous Monk on Sep 04, 2003 at 18:22 UTC | |
by SeekerOKnowledge (Initiate) on Sep 04, 2003 at 18:28 UTC |