Mega Code Archive
Char IsPunctuation Method tells whether the specified Unicode character is categorized as a punctuation mark
Imports System
Module IsPunctuationSample
Sub Main()
Dim ch As Char
ch = "."c
Console.WriteLine(Char.IsPunctuation(ch))
Console.WriteLine(Char.IsPunctuation("no punctuation", 3))
End Sub
End Module