http://www.perlmonks.org?node_id=1052830


in reply to Re^2: Strange log behavior?
in thread Strange log behavior?

sprintf seems to do the right thing.

perl -E ' say sprintf q{%.0f}, $_ for 2.99999, 2.49999, 3, -2.99999, -2.49999, 5279.8012;' 3 2 3 -3 -2 5280 $

I hope this is helpful.

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^4: Strange log behavior?
by Anonymous Monk on Sep 07, 2013 at 19:36 UTC
    Thanks, just what I needed.