util.strings.replace
Replace a substring in a string with a different string.
Arguments:
def util.strings.replace(
remove: str = None,
inject: str = None,
s: str = None,
):
Returns a string.
Example:
s = 'Foo bar'
util.strings.replace(s=s, remove="bar", inject="car") # 'foo car'