[Overview][Constants][Types][Procedures and functions][Index] |
Determines if a value exists in a delimited list of values.
Source position: lazstringutils.pas line 84
function HasDelimitedItem( |
const List: string; |
Delimiter: Char; |
FindItem: string |
):Boolean; |
List |
|
Values checked for the specified item. |
Delimiter |
|
Delimiter used to separate items in the list. |
FindItem |
|
Value to locate in the list of items. |
True when the specified item is found in the list.
HasDelimitedItem is a Boolean function used to determine if the specified value exists in a delimited list of values.
List contains the item values examined in the routine.
Delimiter is the character used to separate the item values in List.
FindItem contains the value to locate in the List of items.
HasDelimitedItem calls FindNextDelimitedItem to get the return value for the method. The return value is True when FindNextDelimitedItem returns an non-empty string value.
|
Finds the next occurrence of a specific value in a delimited list. |
Version 4.0 | Generated 2025-05-03 | Home |