Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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!


In reply to RE: RE: Re: Numbers.... by kirbyk
in thread Numbers.... by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-25 07:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found