string checking
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Hello, You can use the Substring() method to implement the same. For example:
Dim str As String = "Test String" MsgBox("First Three letters: " & str.Substring(0, 3))
I hope this will help. Regards, AllenAllen Smith Software Engineer ComponentOne LLC www.componentone.com
-
Hello, You can use the Substring() method to implement the same. For example:
Dim str As String = "Test String" MsgBox("First Three letters: " & str.Substring(0, 3))
I hope this will help. Regards, AllenAllen Smith Software Engineer ComponentOne LLC www.componentone.com