Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Integer to Money format

by chrestomanci (Priest)
on Jan 20, 2011 at 09:04 UTC ( [id://883269]=note: print w/replies, xml ) Need Help??


in reply to Integer to Money format

Was that a homework question? It looks a bit contrived to do it as a regular expression, when there alternative ways of inserting commas every three digits. For example:

join(',', '4123456789' =~ m/.{3}/g )

Replies are listed 'Best First'.
Re^2: Integer to Money format
by happy.barney (Friar) on Jan 20, 2011 at 09:27 UTC
    did you mean something like this ? :-)
    scalar reverse join(',', (reverse '4123456789') =~ m/.{1,3}/g);
Re^2: Integer to Money format
by Anonymous Monk on Jan 20, 2011 at 09:34 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-03-29 00:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found