Help for this page

Select Code to Download


  1. or download this
    neganch => sub {
        my $string = "abababa";
        $string =~ s/(b)(?!.*b)$/x/;
        return;
    }