Return a subrange of strings starting at a given index.
Source position: classesh.inc line 1051
public procedure TStrings.Slice( |
fromIndex: Integer; |
aList: TStrings |
); |
fromIndex: Integer |
):TStrings; |
Slice adds to aList the strings in the current list, starting with the string at index FromIndex. If aList is not specified, a TStringList instance is created and used. The caller must free the new instance.
|
Return a filtered list. |
|
|
Return and remove the first string in the list. |
|
|
Remove the last string of the list and return it. |
|
|
Call a map routine for each string in the list. |
|
|
Delete a string from the list. |
|
|
Insert a string in the list. |