Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Yet another array problem

by pbeckingham (Parson)
on Jul 29, 2005 at 15:19 UTC ( [id://479438]=note: print w/replies, xml ) Need Help??


in reply to Yet another array problem

Well... The first line inside the loop is redundant, as you assign a string to an array, then overwrite that same array.

Your code below is laso relying on $_ in cases where there is no value.

Consider this:

while (<>) { for (/(\d+)/g) { print $_, "\n"; } }



pbeckingham - typist, perishable vertebrate.

Log In?
Username:
Password:

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

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

      No recent polls found