strreplace

0     0     Edited Jun 15, 2017

Replaces all occurrences of a specified string value with another string value.

Usage

x ← strreplace(string_expression, string_pattern, string_replacement)  


Arguments

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.


Examples

strreplace("abcdefghicde","cde","xxx")  


The above would return:
abxxxfghixxx


See Also


Leave a Comment

Please sign in to leave a comment.