Help for this page

Select Code to Download


  1. or download this
    print "Matched $_\n" if tr/pP// && tr/eE// && tr/rR// && tr/lL//;
    
  2. or download this
    y&pP&&&&y&eE&&&&y&rR&&&&y&lL&&&&print"Matched $_\n";
    
  3. or download this
    # cat sensible.pl
    print "Matched $_\n" if tr/pP// && tr/eE// && tr/rR// && tr/lL//;
    ...
    # perl -MO=Deparse silly.pl
    print "Matched $_\n" if tr/Pp// and tr/Ee// and tr/Rr// and tr/Ll//;
    silly.pl syntax OK