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

RE: Re: Numbers....

by KM (Priest)
on Jun 03, 2000 at 00:27 UTC ( [id://16110]=note: print w/replies, xml ) Need Help??


in reply to Re: Numbers....
in thread Numbers....

What if your number is 191928219.19292?

$a = 1034341.8766756; my ($l, $r) = split /\./, $a; $a = substr($a, 0, (length $l) + 2);

There is probably a bunch of ways to do this. Benchmarking them would be good.

Cheers,
KM

Replies are listed 'Best First'.
RE: RE: Re: Numbers....
by kirbyk (Friar) on Jun 03, 2000 at 02:17 UTC
    You could also be clever and do this with a regex. (I've actually done this!)

    ($trunc_num) = ($fullnum =~ /(.*\.\d\d)/);

    This will take all the values up to the decimal, the literal period, and the next two digits, and stick them in $trunc_num.

    You might want to be sure you have the right number of digits, so that something that's a buck fifty comes out as 1.50 rather than 1.5 - there are also lots of ways to do this. I tend to, being lazy, do something like:

    $fullnum .= "00" if $fullnum =~ /\./;

    $fullnum .= ".00" unless $fullnum =~ /\./;

    And then do the regex trick. The check for the literal period takes care of integer values, like '5', so they don't become 500.

    Okay, it's not pretty, but it is sort of a nifty way to do it.

    -- Kirby

    Tuxtops: Laptops with Linux!

Log In?
Username:
Password:

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

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

    No recent polls found