Help for this page

Select Code to Download


  1. or download this
    $string = "90'+7'";
    $string =~ s/'(\+\d+)'/$1/a;
    
  2. or download this
    $string = "90'+7'";
    $string =~ s/(\d+)'(\+\d+)'/$1+$2/ae;