I want to split a string while the delimiter is a string.
My current code:
Sub Test()
Dim xTest As String = "StackThisIsTheSplitterOverflow"
MessageBox.Show(xTest.Split("ThisIsTheSplitter")(0) & xTest.Split("ThisIsTheSplitter")(1))
End Sub
I want the resulting MessageBox to be "StackOverflow".
The resulting MessageBox of the above code is "StackhisIs"
xTest.Split("ThisIsTheSplitter", StringSplitOptions.None)– Rohit Jain Nov 30 '12 at 12:16