$string = 'blah blah blah CHANGE ME blah blah blah'; $newtext = 'I AM NEW'; $string =~ s|^(.*).+(.*)$|$1$newtext$2|;