Help for this page

Select Code to Download


  1. or download this
    if ($entry =~ /\Q$ARGV[0]\E/ && $entry =~ /\Q$ARGV[1]\E/) {
        # Do something
    }
    
  2. or download this
    if ($entry =~ /(\Q$ARGV[0]\E.*\Q$ARGV[1]\E|\Q$ARGV[1]\E.*\Q$ARGV[0]\E)
    +/ {
        # Do something
    }