Help for this page

Select Code to Download


  1. or download this
    my @myTerms = ( 'foo bar', 'blah' );
    my $term = "foo";
    for (  @myTerms ) {
      print "$term match with $_\n" if /\Q$term\E/;
    }