in reply to moving the filehandle to anyline of a file

I'd refactor that slightly to:

while ( <FH> ) { next if $_ !~ /^Confname/; ... }

DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
Re^2: moving the filehandle to anyline of a file
by Tanalis (Curate) on May 02, 2006 at 08:58 UTC
    Or simply, if we're refactoring,
    while ( <FH> ) { next unless /^Confname/; ... }
    I've always found unless clearer than a negated if for short single-condition conditionals like that. I do accept that that's personal preference, though .. :)