Function Copy returns a substring from a specified source string.
FUNCTION Copy(
source : DYNARRAY[] of CHAR;
index : INTEGER;
count : INTEGER): DYNARRAY[] of CHAR;def vs.Copy(source, index, count):
return DYNARRAY[] of CHAR| Name | Type | Description |
|---|---|---|
| source | DYNARRAY[] of CHAR | Source string. |
| index | INTEGER | Start position in text string. |
| count | INTEGER | Length of substring. |
Message(Copy('A sample string',10,6))
{returns 'string'}vs.Message(vs.Copy('A sample string',10,6))Availability: from All Versions