|
ReplaceString Function |
Top Previous Next |
|
Replace one string with another string. Useful to replace colons with commas, as an example, in the correlation matrix so you can use the GetField function.
Syntax
newString = ReplaceString( inputString, stringToReplace, stringToReplaceWith )
Parameters
Examples The following examples illustrate the use of the ReplaceString function:
PRINT ReplaceString( "Hello World", "Hello", "Goobye" ) |