Help for this page

Select Code to Download


  1. or download this
    foreach (@lines) {
       next unless /start-phrase-here/ .. /stop-phrase-here/;
    
       # process
    }
    
  2. or download this
    my $flag;
    foreach (@lines) {
    ...
    
       # process
    }