Beefy Boxes and Bandwidth Generously Provided by pair Networks vroom
Syntactic Confectionery Delight
 
PerlMonks  

Question:

by Anonymous Monk
on Nov 06, 2001 at 21:33 UTC ( [id://123711]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Using (s)printf()

say you have:
$half = 1/2;
and you want to print $half so it appears as:
.500

printf ("%.3f", $half);
gives:
0.500
how do i get rid of that extra zero?

Replies are listed 'Best First'.
Re: Question:
by Anonymous Monk on Mar 13, 2002 at 15:50 UTC
    Use split() to get rid of it.
      sub _round {
      my $digits = shift;
      my $num = shift;

      my $add = 5 * (10 ** -($digits + 1));

      $num += $add;

      my ($int,$frac) = split /\./,$num;

      $frac = substr($frac, 0, $digits);

      $num = join '.', $int, $frac;

      return $num;
      }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://123711]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.