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!
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()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With