Does any one know how can I cut the 1st 3 char in a string in vb 2008?
For example: Dim i As String = "ABCDEF";
I want to only cut the 1st 3 char and the system will only display "ABC" after the 'cut' action done.
Does any one know how can I cut the 1st 3 char in a string in vb 2008?
For example: Dim i As String = "ABCDEF";
I want to only cut the 1st 3 char and the system will only display "ABC" after the 'cut' action done.
For this type of thing, you should look into using the "Left" function. "Mid" would also work.