IndexOfRange(Value: String; StartIndex: Integer; Count: Integer): Integer;
Value. Element value that should be found.
StartIndex. Element index, starting from which the search is performed.
Count. Number of elements in the range, in which search is executed.
The IndexOfRange method directly searches for the element in the specified range.
The method returns element index in case of successful search, and -1 if the value is not found.
Sub UserProc;
Var
StrL: IStringList;
i: Integer;
Begin
StrL := New StringList.Create;
For i := 0 To Math.RandBetweenI(50, 100) Do
StrL.Add("Number " + Math.RandBetweenI(0, 100).ToString);
End For;
i := StrL.IndexOfRange("Number 25", 10, StrL.Count - 20);
End Sub UserProc;
After executing the example a dynamic array of strings is generated, and direct search of the 25 value is executed in the whole array, except for the first and last 10 elements. In case of successful search, the "i" variable contains index of the found element.
See also: