string_replace_all(s, c1, c2)
Return a new string with all occurrences of the character c1 in s replaced with c2.
c1
s
c2
string_replace_all("hello", \l, \L) // heLLo
Core Module Index | Contents