问题描述:
如有一字符是a="i am a student",采用一指令取a的自左边第八个字符起的的所有字符,使得b="student"
问题解答:
a = "i am a student"b = Mid(a, 8)
Option ExplicitDim a As StringPrivate Sub Form_Load()a = "i am a student"Text1 = Mid(a, 8, Len(a) - 8 + 1)End Sub
楼上正解...
恩,楼上的没错!