As stated how to get char from string at specified index in the visual basic? I look through google and these do not work:
s(index) , s.Chars(inde
s(index)
s.Chars(inde
Getting one char from string at specified index
Dim pos As Integer Dim outStr As String pos = 2 Dim outStr As String outStr = Left(Mid("abcdef", pos), 1)
outStr="b"