Help for this page

Select Code to Download


  1. or download this
    if (($var =~ /x/) && ($var =~ /y/) && ($var =~ /z/)) {...
    
  2. or download this
    if (grep { /x/ && /y/ && /z/ } $var) {...
    
  3. or download this
    #!/usr/bin/env perl -l
    
    ...
            print "All in: $var";
        }
    }
    
  4. or download this
    All in: xyz
    All in: zxy
    ...
    All in: oxoyz
    All in: oxoyoz
    All in: oxoyozo