|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
Re: Re: Problems with regex groupingby damian1301 (Curate) |
| on Aug 17, 2001 at 21:59 UTC ( #105755=note: print w/ replies, xml ) | Need Help?? |
|
To avoid throwing stuff in $1 when you don't need to, there is a great feature called clustering in REs with the (?:stuff here) stuff :).
Just change to /<a href="(?:mailto:)?([^"]*)">([^<"]*)<\/a>/g And that way nothing will be put in $1. You may also want to consider chomping $2 and $3 because a newline could get in there somewhere and cause some trouble. Hope I helped out. :):):) Later
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||