怎样逆序输出字符串?如题,逆序输出一个字符串..[解决办法]Dim i As Integer, strA As String, strB As Str
怎样逆序输出字符串? 如题,逆序输出一个字符串..
[解决办法] Dim i As Integer, strA As String, strB As String strA = "abcdef " For i = Len(strA) To 1 Step -1 strB = strB & Mid(strA, i, 1) Next i MsgBox strB