Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Yet again: floats are not expressed accurately

by NERDVANA (Deacon)
on Mar 23, 2023 at 00:33 UTC ( [id://11151145]=note: print w/replies, xml ) Need Help??


in reply to Yet again: floats are not expressed accurately

but how do I get to the decimal cents in the first place?

Assuming you start with a string, you have to avoid triggering perl's implied parse to a floating point number.

my $input= "2.26"; my ($whole, $frac)= split /\./, $input; $frac //= ''; length $frac < 2 or die "would lose precision on .$frac"; $frac .= '0'x(2 - length($frac)); my $cents= "$whole$frac";

Yes, it's ugly. I'm sure there is some clever way to do this with a regex that runs faster, and would be even uglier. But, you can just stick that in a function named "parse_cents" or "parse_decimal($str,$scale)" and hide the details.

Another option is to use Math::BigRat, which will handle all arbitrary cases, but then the performance of all the math you do on the numbers will be a little slower.

Log In?
Username:
Password:

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

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

    No recent polls found