str_replace

ABSTRACT

Replaces substrings of a string with the target

PARAMETERS
strthe original string
substrthe substr that we want to replace
withthe string that replaces the substr
RETURN

a string where all of the substrings have been adjusted

DECLARATION
func str_replace(str, substr, with)