Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: map a list

by davidrw (Prior)
on Mar 12, 2007 at 20:09 UTC ( [id://604424]=note: print w/replies, xml ) Need Help??


in reply to map a list

I'm a fan of the ternary operator, but i think an approach like this would be clearer:
# LHS = Left-hand side # RHS = Right-hand side my $s = 'a,b=c,e=#f'; my %h = map { $_ .= "=fn($_)" unless /=/; # add a RHS s/#(\w+)/fn($1)/; # change the RHS '#' notation to the ' +fn' notation split( /=/, $_, 2 ); # return the LHS=>RHS mapping (delim'd + by a '=') } split /,/, $s; # split on commas to get the strings for the pai +rs

Log In?
Username:
Password:

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

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

    No recent polls found