Expression functionsReplacement & Manipulationstrings.ReplaceOn this pagestrings.ReplaceReplace first n occurrences (-1 for all) strings.Replace(s: string, old: string, new: string, n: int) -> string Arguments NameTypesstringoldstringnewstringnint Example {{ strings.Replace("hello", "l", "L", 1) }} Returns "heLlo".