Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Re: Re: Re: How to remove the $1 hard coding

by chunlou (Curate)
on Aug 22, 2003 at 19:37 UTC ( [id://285899]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: How to remove the $1 hard coding
in thread How to remove the $1 hard coding

Probably you meant this.
push @a, ('a b c'=~/(\w) /g)[1]; print "@a";
You need () to capture something into the array. You need the switch /g if you want to put every match into an array, not just the first match (hence for the index [$i] to work).

Log In?
Username:
Password:

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

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

    No recent polls found