$string = " highlight the word 'word' in this sentence"; #### highlight the WORD 'WORD' in this sentence #### $string " highlight the word "; #### highlight the WORD ; #### $replacementString = "WORD"; $string =~ s/word/$replacementString/ig;