Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Re: Problems with regex grouping

by damian1301 (Curate)
on Aug 17, 2001 at 21:59 UTC ( [id://105755]=note: print w/replies, xml ) Need Help??


in reply to Re: Problems with regex grouping
in thread Problems with regex grouping

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
/<a href="(mailto:)?([^"]*)">([^<"]*)<\/a>/g
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

$_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://105755]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (6)
As of 2024-04-19 06:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found