Help for this page

Select Code to Download


  1. or download this
    ...
    my( $p, $i ) = 0;
    $p += $i while $i = 1+index $haystack, $needle, $i;
    ...
    
  2. or download this
    ...
    my( $p, $i ) = 0;
    ...
        print "$p : $i, other stuff";
    } while $i = 1+index $haystack, $needle, $i;
    ...
    
  3. or download this
    my( $p, $i ) = 0;
    loop {
        $p += $i;
        last if $i = 1+index $haystack, $needle, $p;
    }