Help for this page

Select Code to Download


  1. or download this
    unless (/cr\d$/) {
        print "This entry didn't match!\n";
    }
    
  2. or download this
    if ($_ !~ /cr\d$/) {
        print "Didn't match.\n";
    }