http://qs321.pair.com?node_id=253528


in reply to peek - output a one-line preview of stdin

my $pad = ' ' x $wide; ... $_ = substr($_ . $pad, 0, $wide); print $_, "\r";
That can be written far more simply and efficiently as:
printf "%-${wide}.${wide}s\r", $_;

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Replies are listed 'Best First'.
Re: peek - use printf
by halley (Prior) on Apr 28, 2003 at 02:58 UTC
    Great tip-- I often forget to use printf, as if moving from C to Perl meant having to leave all of C's methods behind. I have never liked the %#.#s notation of printf... and now I imagine perl6's interpolated hashes may make for some righteous DWIM hacks.

    --
    [ e d @ h a l l e y . c c ]