Owning Class: string
Requires: MathScript RT Module
d = strreplace(a, b, c)
Legacy Name: strrep
Replaces strings.
| Name | Description |
|---|---|
| a | Specifies the string in which you want to perform a string replacement. |
| b | Specifies the string you want to replace. |
| c | Specifies the string with which you want to replace each occurrence of b. |
| Name | Description |
|---|---|
| d | Returns a with all occurrences of b replaced with c. |
A = 'this is a test for strreplace'
B = 'test'
C = 'TEST'
D = strreplace(A, B, C)
findstr
regex_replace
strcmp
strcmp_i
strfindall
strmatchall
strtrimwhite