Replaces the first occurrence matching the target string by the replacement string in the base string.
The replacement proceeds from the beginning of the string to the end, for example, replacing “aa” with “b” in the string “aaa” will result in “ba” rather than “ab”.
String
replace(<parameters>)
Parameter | Type |
---|---|
base | string |
target | string |
replacement | string |
replace(<base>,<target>,<replacement>)
Return a string.
replace("Hello World", "l", "x")
Returns “Hexlo World”.