reverse string
reverse string
Rate reverse string
(1(1 Vote))
Dim str As String
Dim a, i, x As Integer
str = Text1.Text
a = Len(str)
For i = 0 To a
x = a - i - 1
If x > 0 Then
Text2 = Text2 & Mid(Text1, x, 1)
End If
Next
End Sub
reverse string Comments
No comments yet — be the first to post one!
Post a Comment