Help for this page

Select Code to Download


  1. or download this
    if ($_ =~ "jackson") {
        print $_ . "\n";
    }
    
  2. or download this
    m/jackson/ and print $_ . "\n"; # logical-and
    print $_ . "\n" if (m/jackson/); # statement modifier