vote up 2 vote down star

Simple problem that I can't figure out...

How can I print a '%' character within a printf string? The code below prints it, but gives an 'invalid conversion' error as well.

printf "\t\t".$hour."00 HRS\t=>\t%.2f\t%.2f\t%.1f\%\n", $total, $max15, ($max15/$total*100);

Should output something like:

        0000 HRS    =>    3125.19    898.02    28.7%
flag

-1 for not reading TFM – glenn jackman Jul 9 at 14:37

6 Answers

vote up 13 vote down check

You would use %%, not \% (from man printf)

link|flag
+1 for winning the speed race :) – Vinko Vrsalovic Jul 9 at 8:55
2  
Does "man printf" really tell you about the Perl function on your system? On mine, it only tells about the command-line program. I can get the C function with "man 3 printf"; if I want to read about the Perl function, I use "perldoc -f printf" – Rob Kennedy Jul 9 at 9:02
At least it looks like we all agree on the answer. – mirod Jul 9 at 9:03
@Rob Kennedy: "perldoc -f printf" doesn't give me any detail but instead refers me to sprintf. "perldoc -f sprintf" indeed gives me all the details I need, much like "man printf". "man 3 printf" OTOH gives me the man page for an OCaml library. That's on a recent kUbuntu (with OCaml installed obviously!) – mirod Jul 9 at 9:07
@mirod: Thanks for pointing me to the resource as well. – Zaid Jul 9 at 10:10
vote up 4 vote down

%% for a single %

link|flag
vote up 3 vote down

Instead of \% use %% :)

link|flag
vote up 2 vote down

Use %% to print a single %

printf "\t\t".$hour."00 HRS\t=>\t%.2f\t%.2f\t%.1f%%\n", $total, $max15, ($max15/$total*100);
link|flag
vote up 1 vote down

On hindsight, there was a crude alternative which would have done the same thing.

Print the '%' symbol as a string:

printf "\t\t".$hour."00 HRS\t=>\t%.2f\t%.2f\t%.1f%s\n", $total, $max15, ($max15/$total*100), "%";
link|flag
plus-1 for being sly ;) – tenpn Nov 6 at 11:43
vote up 0 vote down

This is a bit tricky because the documentation for the template for printf is actually in the documentation for sprintf. You have to catch that line in the middle of the paragraph to know to look there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.