Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: How do I print an array with commas separating each element?

by Coruscate (Sexton)
on Feb 13, 2003 at 20:36 UTC ( [id://235098]=note: print w/replies, xml ) Need Help??


in reply to How do I print an array with commas separating each element?

For completeness, here's a verbose solution:

my $x; my @a = qw(one two three); print "$a[$_-1], " while $x++ < $#a; print "$a[$#a]";

Replies are listed 'Best First'.
Re: Answer: How do I print an array with commas seperating each element?
by extremely (Priest) on Feb 14, 2003 at 18:26 UTC

    Grr., I'd forgotten you can't reply to answers and have it be visible on the answer screen... Plus, this is only a mild (much shorter, tho) variation of another answer. *sigh* We're doing ridiculous ways now? Then why not do this?

    my $x; my @a = qw(one two three); print $_, ++$x<@a ? ", " : "\n" foreach @a;

    For bonus fun, you can crush all syntactical whitespace out of that print line, too.

    Still, I'm thinking I'll stick with the built-in join() for future projects...

    --
    $you = new YOU;
    honk() if $you->love(perl)

Log In?
Username:
Password:

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

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

    No recent polls found