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!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.