[Overview][Constants][Types][Procedures and functions][Index] |
Gets the next delimited value in List starting at the specified position.
Source position: lazstringutils.pas line 82
function GetNextDelimitedItem( |
const List: string; |
Delimiter: Char; |
var Position: Integer |
):string; |
List |
|
List of delimited values examined in the routine. |
Delimiter |
|
Delimiter character used to separate values in the list. |
Position |
|
Initial position in the list where the characters are examined |
Value for the list item at the specified position.
GetNextDelimitedItem is a String function used to get the next item in a delimited list of items starting at the specified position.
List contains the list of values examined in the routine.
Delimiter is the character used to separate item values in List.
Position contains the initial character position in List examined in the routine.
GetNextDelimitedItem iterates over the characters in List starting at the character in Position. When the character in Delimiter is encountered, the characters starting at Position and prior to the position for the Delimiter are copied into the return value.
The value in Position is incremented to skip both the character values and the delimiter for the list item.
Version 4.0 | Generated 2025-05-03 | Home |