Product DocumentationDeveloper GuidesODSL LanguageFunctionsAll FunctionsreplaceOn this pagereplaceReplaces each substring of the input string that matches the literal match string with the specified literal replacement stringSyntaxstring = replace(string, match, replacement)Exampleprint replace("The end is nigh", "end", "start")The start is nigh