Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Question:

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


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 20: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
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-09-20 21:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (26 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.