[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Replace occurrences of a set of strings to another set of strings
Source position: strutils.pp line 104
function StringsReplace( |
const S: string; |
OldPattern: array of string; |
NewPattern: array of string; |
Flags: TReplaceFlags |
):string; |
StringsReplace scans S for the occurrence of one of the strings in OldPattern and replaces it with the corresponding string in NewPattern. It takes into account Flags, which has the same meaning as in StringReplace.
Corresponding strings are matched by location: the N-th string in OldPattern is replaced by the N-th string in NewPattern. Note that this means that the number of strings in both arrays must be the same.
If the number of strings in both arrays is different, then an exception is raised.
|
Replace occurrences of one substring with another in a string. |
|
|
Flags for StringReplace function |