while( my $line = ) { REDO: chomp( $line ); if( $line =~ /^#/ ) { goto REDO; } print "Doesn't begin with #\n"; }