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

Re: Make CSV list from values in AoH

by LanX (Saint)
on Aug 17, 2018 at 22:43 UTC ( [id://1220544]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    push @names, $_->{name} for @AoH;
    $csv  = join "," , map { "'$_'" } @names;
    
  2. or download this
    $csv  = join "," , 
               map { "'$_'" }  
                  map { $_->{name} } 
                     @AoH;
    

Log In?
Username:
Password:

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

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

    No recent polls found