Answers for "vbnet check if sting contians symbols"

VBA
0

vbnet check if sting contians symbols

If MyString.IndexOfAny("[~`!@#$%^&*()-+=|{}':;.,<>/?]".ToCharArray) <> -1 Then
MsgBox("No Symbols!")
End If
Posted by: Guest on July-28-2021

Code answers related to "vbnet check if sting contians symbols"

Code answers related to "VBA"

Browse Popular Code Answers by Language