jbenson001
Programmer
I am creating a 1-Dimensonal arry of strings like this:
What I would like to know is how to seach my array(OTC) for a specific value, and get the idex of it.
ie. OTC.Find("MyString") (Not working obviously)
If I type OTC., I see indexof, find,..etc, however the syntax is extreamly confusing, or is there something I am missing...
Thanks...
Jim
Code:
Dim OTC() As String
OTC = MyString.Split(",")
What I would like to know is how to seach my array(OTC) for a specific value, and get the idex of it.
ie. OTC.Find("MyString") (Not working obviously)
If I type OTC., I see indexof, find,..etc, however the syntax is extreamly confusing, or is there something I am missing...
Thanks...
Jim