SRep$: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
The '''SRep$''' [[internal function]] or '''string replace''' returns A$ with changes. Each substring in A$, from position X on, that matches B$, is replaced by C$. If X is omitted, the search for the match begins at the first character of A$. | |||
SRep$(A$[,X],B$,C$) | SRep$(A$[,X],B$,C$) | ||
====Comments and Examples==== | ====Comments and Examples==== |
Revision as of 14:50, 3 April 2014
The SRep$ internal function or string replace returns A$ with changes. Each substring in A$, from position X on, that matches B$, is replaced by C$. If X is omitted, the search for the match begins at the first character of A$.
SRep$(A$[,X],B$,C$)
Comments and Examples
00010 let A$="Wow, that fish was that big." 00020 let B$="that" 00030 let C$="this" 00040 print SRep$(A$,B$,C$) 00050 print SRep$(A$,7,B$,C$)
The above program will print:
Wow, this fish was this big. Wow, that fish was this big.