ExCellerate.Functions.General.Replace (excellerate v0.4.0)

Copy Markdown View Source

Replaces all occurrences of a substring with a replacement string.

Examples

replace('hello world', 'world', 'there')  'hello there'
replace('aaa', 'a', 'b')                  'bbb'
replace('hello', 'xyz', 'abc')             'hello'