This Function returns a <string>, composed by the Source string, having the String to replace replaced by the New string.
Parameters
Source string <string> |
|
String from where the value will be retrieved. |
|
|
String to replace <string> |
|
String to replace in the Source string. |
|
|
New string <string> |
|
String to replace the String to replace in the Source string. |
|
|
Example 1
|
|
Example 1 |
Replace("Kalipso is good.", "good", "very good")
Result = Kalipso is very good. |
|
Replace("Kalipso is very good.", "xpto", "bad")
Result = Kalipso is very good. |
Updated: 3/21/2018 4:26 PM |