Help for this page

Select Code to Download


  1. or download this
    if ($value =~ /$search/gi) {
        $contains++;
    }
    
  2. or download this
    while ($value =~ /$search/gi) {
        $contains++;
    }
    
  3. or download this
    ++contains while $value =~ /$search/gi;
    
  4. or download this
    $contains += () = /$search/gi;