Help for this page

Select Code to Download


  1. or download this
    print map {
         chomp;
         $_ . /^TITLE/? "\n" : ' ';
    } grep { /$re/ } <FILE>;
    
  2. or download this
    {
        local $" = ' ';  # just making sure - this is the default
        print "@{[grep {/$re/} <FILE>]}";
    }