Help for this page

Select Code to Download


  1. or download this
    my ($seen_opening, $seen_data, $seen_closing);
    my @filtered =
    ...
            && !($seen_closing ||= /Dancer/)  # Find closing bound
          }
          @list;
    
  2. or download this
    my @filtered =
       grep { (/DBIC/ .. /Dancer/) && !/DBIC/ && !/Dancer/ }
          @list;