Help for this page

Select Code to Download


  1. or download this
    if ($text =~ /\Q$stub/) {
        # Do something
    }
    
  2. or download this
    if (index($text, $stub) >= 0) {
        # Do something
    }