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


in reply to Re: percentage and sprintf
in thread percentage and sprintf

That works, but I'd recommend this instead so that the percentage is rounded to an integer rather than truncated.

my $bar = sprintf "%2.0f%%", $foo * 100;