vb, visual basic, vb6, reverse string, how to reverse string reverse string
(Website Helper) reverse string Number of Visitors: Site Map

vb: how to reverse string?



Website Design
Website Promotion
Graphic Design
Programming
Free Software
Computer Tips
Discount Stores
This site provides users with the information about vb, visual basic, vb6, reverse string, how to reverse string, and more.

If you think that this site is helpful, please recommend your friends to visit our site.



How to reverse string?

The following is the code for how to reverse string:


Dim sLength, t As Long Dim iString, ch, whole, rString As String iString="stringreverse" sLength = Len(iString) 'get length of string For t = sLength To 1 Step -1 ch = Mid(iString, t, 1) whole = whole & ch Next rString = whole 'rString shows the reversed string
(Website Helper) reverse string (c) EduSoftMax - www.edusoftmax.com