June 29th, 2006, 01:07 AM
|
#2 (permalink)
|
| Perfetc Member
Join Date: Jan 2003 Location: Maryland Suburbia
Posts: 4,334
|
You should be able to use the "split" function of the String class. In this case your delimeter is the comma character, I think VB.NET does characters like "a"c rather than 'a' (yes that "c" is supposed to be there -- its pretty retarded)
Something like Code: dim links() as String = TextBox1.text.split(","c)
for each s as String In links
If s.subString(0,7) != "http://" Then
MessageBox.show("Link: "+s+" is not properly formatted.")
End If
Next
Last edited by VHockey86 : June 29th, 2006 at 01:09 AM.
|
| |