Help for this page

Select Code to Download


  1. or download this
    $string = reverse $string;
    $string =~ s/b/x/;
    $string = reverse $string;
    
  2. or download this
    $string =~ s/(.*)b/$1x/;
    
  3. or download this
    $string =~ m/.*(?=b)/g and $string =~ s/\Gb/x/;
    
  4. or download this
    substr($string, rindex($string, 'b'), 1) = 'x';