string_replace_all


string_replace_all(s, c1, c2)
      

Return a new string with all occurrences of the character c1 in s replaced with c2.

Examples:


string_replace_all("hello", \l, \L)
// heLLo
      

Also see:

string_set
string_fill
string_upcase


Core Module Index | Contents