Help for this page

Select Code to Download


  1. or download this
    while ( $txt =~ /$srch/g ) {
        push @offset, pos($txt) - 1;
    }
    
  2. or download this
    push @offset, pos($txt) - 1 while $txt =~ /$srch/g;
    # while ( $txt =~ /$srch/g ) { push @offset, pos($txt) - 1 }