//Replace the first match in a string //If you wish to replace all matches, use the replaceAll() method. var str = "JavaScript replace method test"; var res = str.replace("test", "success"); //res = Javscript replace method success