Replaces all occurrences of a specified string value with another string value.
x ← strreplace(string_expression, string_pattern, string_replacement)
string_expression
Is the string expression to be searched.
string_pattern
Is the substring to be found. string_pattern cannot be an empty string.
string_replacement
Is the replacement string.
strreplace("abcdefghicde","cde","xxx")
The above would return:
abxxxfghixxx