CCS Standardfunction StrCopy [Str] |
Creates an excerpt from a string.
Value (or variable containing a string) from which an excerpt is to be created.
Specifies the index at which the excerpt is to start. The first character of String has the index 1.
1 <= StartIndex <= Length(String)
Specifies the index at which the excerpt is to end (the indexed character is included in the excerpt).
1 <= StartIndex <= Length(String)
If the StopIndex is less than the StartIndex, the order of the characters is reversed.