Replace a specific value in a string with another value.
Syntax
Replace the word(String1, replace_with, string value)
Sample
1. Replace the word(JIFFYRPA, TEST, RPA) => JIFFYTEST
2. Replace the word(JIFFY123, TEST, 123) => JIFFYTEST
3. Replace the word(JIFFYRPA, 123, RPA) => JIFFY123
Parameter Details
Input Parameter Name |
Description |
String1 |
Complete string |
replace_with string value |
string value to be replaced in original string |