Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

what about using $" ?

by harleypig (Monk)
on Jun 27, 2005 at 00:23 UTC ( [id://470111]=note: print w/replies, xml ) Need Help??


in reply to Format a list with commas and "and"

What about this?

sub andify { return '' unless @_; return $_[0] if @_ == 1; local $" = @_ == 2 ? ' ' : ', '; $_[-1] = 'and ' . $_[-1]; return "@_"; }
Fixed squiggly brackets and should be $" not $,.
Fixed comma placement.
Got rid of blackberry comment.
Handled null case.
Changed regex to concatenation
Harley J Pig

20050525 Edit by ysth: p, code tags

Log In?
Username:
Password:

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

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

    No recent polls found