replace
..Root.String.replace
Replaces the first occurrence of a with b.
Parameters: String a, String b
String
Return value: reference to this String
NativeCallable, Callable
NativeCallable
Callable
auto str.=("Hello World!"); str.replace("World", "there"); log(str);