strReplace(text,find,replace)¶
Definition¶
String strReplace(String text, String find, String replace)
Description¶
Given a string, this method finds and replaces all occurences of substring with another substring, and returns the resulting string.
Parameter Definition¶
Name | Type | Description |
---|---|---|
text | String | String to look look for matching substring(find param) in |
find | String | String to look for in text, literal not a pattern |
replace | String | When find string is found, replace with this string |