my $section = 0; my %sections = (1 =>[],2=>[]); while() { if (/;section([12])/) { $section = $1 and next } push @{$sections{$section|| warn "No section defined for: $_\n" and next()}} ,$_; }