Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Separating big numbers with commas

by Anonymous Monk
on Dec 15, 2018 at 22:39 UTC ( [id://1227307]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    cat ~/.local/bin/commafy
    
    #!/usr/bin/perl -nl
    $_ =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g;
    print;
    
  2. or download this
    $ find /nix/store -cmin -150 | perl -nle '$sum+=-s "$_";END{print $sum
    +}' | commafy
    18,025,136,505
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found