Contains(Value: String): Boolean;
Value. Value, which existence should be checked.
The Contains method checks if the element, which value is passed by the Value parameter, exists.
Sub Main;
Var
StrL: IStringList;
i: Integer;
s: String;
Begin
StrL:=New StringList.Create;
For i:=0 To Math.RandBetweenI(50,100) Do
StrL.Add("Number "+Math.RandBetweenI(0,100).ToString);
End For;
If StrL.Contains("Number 25") Then
s:="Yes";
Else
s:="No";
End If;
End Sub Main;
After executing the example a dynamic array of strings is created. The "s" variable is set to Yes, if array contains element with the Number 25 value.
See also: