Char IsSeparator Method (String, Int32) tells whether character at specified position is a separator character
Imports System Module IsSeparatorSample Sub Main() Dim str As String str = "this is a test" Console.WriteLine(Char.IsSeparator(str, 6)) End Sub End Module