Vb.Net String Split function returns an array of String containing the substrings delimited by the given System.Char array.
Public Function Split(ByVal ParamArray separator() As Char) As String()
Parameters:
separator - the given delimiter
Returns:
An array of Strings delimited by one or more characters in separator
VB.NET SourceCode
When you execute this programme , you will get "vb.net" "split" "test" in separate messagebox.