Help for this page

Select Code to Download


  1. or download this
    {
        local $_ = $str;
        /pattern1/ && /pattern2/;
    }
    
  2. or download this
        "8" =~ /^(?=.*\w)(?=.*\d)/;
    
  3. or download this
        "8" =~ /\w/ && "8" =~ /\d/;
    
  4. or download this
        "8" !~ /\w\d/ && "8" !~ /\d\w/;