translate
Translate characters in a string: each character in from is replaced by the corresponding character in to.
string(required): the source stringfrom(required): characters to replaceto(required): replacement characters (same length)
utlx
translate("hello", "elo", "ELO") // "hELLO"
translate("2026-05-01", "-", "/") // "2026/05/01"