Help for this page

Select Code to Download


  1. or download this
    while ($string =~ /abc/ig) {
        my $ins = sprintf(" def(%s)", $x++);
    ...
        $string =~ s/\G/$ins/;
        pos($string) = $pos + length($ins);
    }
    
  2. or download this
    while ($string =~ /abc/ig) {
        my $ins = sprintf(" def(%s)", $x++);
    ...
        substr($string, $pos, 0, $ins);
        pos($string) = $pos + length($ins);
    }
    
  3. or download this
    $string =~ s/(abc)/  sprintf("%s def(%s)", $1, $x++)  /eig;