Help for this page

Select Code to Download


  1. or download this
        my @match= whatever   if whyever;
  2. or download this
    chomp( my @lines= <FH> );
    return map qr/$_/, @lines;
    
  3. or download this
    return map {
        chomp( my $line= $_ );
        qr/$line/;
    } <FH>;