Statement | Replace |
---|---|
Version | 2.3.5+ |
Purpose | Replaces specified text in the specified variable with new text |
Replace statements require a variable name, a search value and a replacement string, in the format
Replace <variable> <search> <replace>
The following code will change the value of '${myvar}'
${myvar} = "hello, my friend" Replace myvar "hello" "goodbye" # The new value of ${myvar} is "goodbye, my friend"