Function Reference
— Function File: strrep (s, x, y)

Replaces all occurrences of the substring x of the string s with the string y. For example,

          strrep ("This is a test string", "is", "&%$")
                "Th&%$ &%$ a test string"