I am right now trying something like this
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
`how can i access myAddress[intI+1] from here?
Next intI
Try this:
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
Console.WriteLine(myAddress(intI))
Next intI
>= LBound(myAddress) And <= UBound(myAddress)