Easypt

replace

..Root.String.replace

Replaces the first occurrence of a with b.

Child of:

String

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello World!");
str.replace("World", "there");
log(str);