Say I have an ArrayList:
<string1.4>
<string2.4>
<string3.4>
and I wish to return the the first element of the arrayList when I say arrayList.containsSubString('string1'); How could this be done other than iterating through each of the elements of the arrayList and checking if string1 is a substring of that element string?