Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: C-style for loop

by toolic (Bishop)
on Nov 15, 2008 at 19:12 UTC ( [id://723829]=note: print w/replies, xml ) Need Help??


in reply to C-style for loop

Those 2 loops do quite different things.

If your goal is to create a new array, @cleaned_values, from another array, @values, you could use a "for" loop like this:

for (@values) { push @cleaned_values, _clean_cgi_param($_); }

Alternately, you could use map for this:

@cleaned_values = map { _clean_cgi_param($_) } @values;

Update: The code in the OP was modified after I composed this node.

Replies are listed 'Best First'.
Re^2: C-style for loop
by ursus (Acolyte) on Nov 17, 2008 at 18:18 UTC
    Yes! Use map()!

Log In?
Username:
Password:

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

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

    No recent polls found