If I have an array like
Dim list As String()
and list is read from a file with
list = Split("filehere.txt", ",")
and I use something like
If list.Contains("string") then
code here
End If
can I find out which string of the array "string" came from, for example: string(0) or string(16)