replace
Replace all literal occurrences of a substring.
string(required): the string to modifysearch(required): literal substring to findreplacement(required): what to replace with
utlx
replace("Hello World", "World", "UTL-X") // "Hello UTL-X"
replace("2026-05-01", "-", "/") // "2026/05/01" (replaces ALL occurrences)