I'm having some issues using the String.Split method, Example here:
Dim tstString As String = "something here -:- URLhere"
Dim newtstString = tstString.Split(" -:- ")
MessageBox.Show(newtstString(0))
MessageBox.Show(newtstString(1))
The above, in PHP (my native language!) would return something here AND URLhere in the message boxes.
In VB.NET I get:
something here
AND
: (colon)
Does the String.Split only work with standard characters? I can't seem to figure this one out. I'm sure it's something very simple though!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…