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

Re^2: printf question

by RMGir (Prior)
on Jan 21, 2010 at 12:53 UTC ( [id://818707]=note: print w/replies, xml ) Need Help??


in reply to Re: printf question
in thread printf question

almut's right.

You can get a slight improvement by keeping track of your longest word as you count them, though, and then using printf's "*" modifier to read the field width from that variable.

printf "%-*s %d\n", $maxLen, $word, $seen{$word};
I'd put a width specifier on the %d so the numbers line up nicely as well, but that's just my preference:
printf "%-*s %4d\n", $maxLen, $word, $seen{$word};

Mike

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://818707]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-19 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found