StringsReplace
Replace occurrences of a set of strings to another set of strings
Declaration
Source position: strutils.pp line 123
function StringsReplace(const S: string; OldPattern: Array of string;
NewPattern: Array of string;
Flags: TReplaceFlags) : string;
Description
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.
Errors
If the number of strings in both arrays is different, then an exception is raised.
See also
Name | Description |
---|---|
StringReplace | Replace occurrences of one substring with another in a string. |
TReplaceFlags | Flags for StringReplace function |