Data Archive
- Data Archive 6.5 HotFix 1
- All Products
REPLACE ( InputString, Substring[, ReplacementString] )
Argument
| DataType
| Description
|
---|---|---|
InputString
| char
| String in which to search for a substring to be replaced by another string.
|
Substring
| char
| Substring to search for that you want to replace with ReplacementString.
|
ReplacementString
| char
| Optional. String to replace Substring. If you do not pass this parameter, REPLACE deletes all occurrences of Substring.
|
The function call returns the following string:REPLACE ( col1, 'fox', 'rabbit' )
The rabbit sees another rabbit in the meadow.