Help for this page

Select Code to Download


  1. or download this
    my $line = 'fee fi fo fum';
    my $pat = qr/i smell the blood/;
    ...
        print "of an englishman\n";
    }
    __END__
    
  2. or download this
    unless( $line =~ /$pat/ ) { ...
    if( not $line =~ /$pat/ ) { ...
    if( $line !~ /$pat/ ) { ...