![]() ![]() ![]() ![]() | Table Of Contents | Index |
Example:Substitute can also be used on string arrays allowing you to do a subststute of a string with another string over the entire string array.
Var St St = 'ABCDEFABC' Substitute(St,'ABC','XX') Writeln St ;returns XXDEFXX
Example:
Var A ReadTextFile 'MYFILE.TXT' A Substitute(A,'ABC','XX') WriteTextFile 'MYFILE.TXT' A
Category: | String | Array |
---|
![]() ![]() ![]() ![]() | Table Of Contents | Index |
|