str StringChange(str, str, str)
Returns a copy of the first string, with all occurrences of the second string changed to the third string.
#define MyString "a ca c"#define MyString2 StringChange(MyString, " ", "b")// MyString2 = 'abcabc'