Help for this page

Select Code to Download


  1. or download this
    foreach (grep /start/ .. /stop/, @data){
      # do_stuff
    }
    
  2. or download this
    foreach (grep /start/ .. /stop/, @data){
      next if /start/;
    ...
    
      # do stuff
    }