Hello guys and girls,
I use a "do until" loop to get certain data out of a long string (a website responsetext).
Now I use the following :
Do Until IsNumeric(Mid(polres, x, 1)) = True
x = x + 1
Loop
This is fine, but I need to add something, so basically I want to say the following (but that doesn't work) :
Do Until IsNumeric(Mid(polres, x, 1)) = True OR Until Mid(polres, x, 1) = "-"
It seems I cannot use "OR" in DO UNTIL loops. This surprises me, because I can use "AND" (I use that in another occassion), but here that won't work.
Anyone has any good suggestion on how to go about this?
Thanks!
Bookmarks