I'm having problems using the String.Split method. An example is 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!) Will return something here AND the URL in the posts.
In VB.NET, I get:
something here
and
: (colon)
Is String.Split used only with standard characters? I can't seem to figure it out. I am sure it is very simple!
Chris
source share