Help for this page

Select Code to Download


  1. or download this
    $_ = "abcdmefg";
    if ($_ =~ /m/g) {
      print "matched 'm' at ",pos,"\n";
    }
    
  2. or download this
    $_ = "abcdmefg";
    if (($pos = index($_, 'm')) >= 0) {
      print "found 'm' at ", $pos, "\n";
    }