Help for this page
$string = "90'+7'"; $string =~ s/'(\+\d+)'/$1/a;
$string = "90'+7'"; $string =~ s/(\d+)'(\+\d+)'/$1+$2/ae;