I\'m having some issues using the String.Split method, Example here:
Dim tstString As String = \"something here -:- URLhere\"
Dim newtstString = tstString.Sp
This is what you need to do, to prevent the string from being converted to a Char
array.
Dim text As String = "something here -:- urlhere"
Dim parts As String() = text.Split(New String() {" -:- "}, StringSplitOptions.None)
This is the System.String
member function you need to use in this case
Public Function Split(ByVal separator As String(), ByVal options As StringSplitOptions) As String()