reverse the string without using reverse string?

Answer Posted / rajani_kanth

Option Explicit
Dim a,c,d,i
a="RajaniKanth"
For i=Len(a) To 1 Step-1
c=Mid(a,i,1)
d=d&c
Next
MsgBox d

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you create a file object to work with the files in the vbscript language?

496


Can anyone send me a vb script function for verifying the functionality of active links on a web page

1587


Which operator is used to concatenate the 2 values in the vbscript language?

546


Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?

790


Is vbscript a case-sensitive or case-insensitive?

745






What are class variables?

607


If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?

528


Explain the arrays in vb script?

578


A folder is there inside no of textfiles are avilable. How do count the textfiles. Normally folder means we are using subfolder methods but textfiles is not working for subfolder methods and how do get file name also.

1500


what is resorceallocation

1765


how does vb script help in web page designing? explain with example.

1579


Explain the support of asp for vb script functionality?

626


How do i automate a website www.flyashx.com without having any test cases witin a week time.

1443


Out of the different type of operators, which are evaluated first and last in the vbscript language?

552


Mention what is the use of option explicit in vbscript?

537