Replace(
string:string,
string:search,
string:replace,
[int:start],
[int:count],
[bool:case]
)
→ string
Searches the input string for the search sub-string and replaces it with replace if found.
Example:
Output( Replace("Hello there!", "e", "a") ); --> hallo thara!