IntList
Declaration: |
IntList(NumList: TIntArray; Separator: string): string; |
Concatenates the integers stored in the dynamic array NumList to create a string. The integer numbers are separated by the string specified by the parameter Separator.
|
Example: |
Assume that the variable List is a dynamic integer array (type TIntArray) containing the numbers 4, 66, 15 and 12. Then the statement
IntList (List,'; '); returns the following string: '4; 66; 15; 12'
|
|