how to store charecters of HARIBABU Using arrays
Answers were Sorted based on User's Feedback
Answer / aditya
Dim Word, reverse, arr1(), length, i
Word = Inputbox(" Enter a Word" )
length = len(word)
redim preserve arr1(length)
For i = 0 to (length -1)
arr1(i) = mid(word,i+1,1)
Next
For i = (length -1) to 0 step -1
reverse = reverse & arr1(i)
Next
msgbox reverse
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / monika
dim a()
str="haribabu"
j=0
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(j)
a(j)=s
msgbox a(j)
j=j+1
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / usha
str="HARIBABU"
for i =1 to len(str)
a = mid(str,i,1)
temp = temp & a & " "
next
msgbox temp
a = split(temp," ")
for i = 0 to ubound(a)-1
msgbox a(i)
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / b.hari babu
dim a()
cnt=0
str="haribabu"
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(cnt)
a(cnt)=s
cnt=cnt+1
for j=0 to ubound(a)-1
msgbox a(j)
next
next
| Is This Answer Correct ? | 1 Yes | 3 No |
I wrote the vbscript code on notepad i was geeting run time error "object required line 1" my code is set usernameobj=Descriptive.Create() usernameobj( "name").value="Username" set passwordobj=Descriptive.Create() passwordobj("name").value="password" set signinobj=Descriptive.Create() signin("name").value="sigin" browser("gmail").page("gmail").WebEdit("usernameobj").set ("enter username") Browser("gmail").Page("gmail").WebEdit("passwordobj").Setsec ure.Crypt.Encrypt("entr password") browser("gmail").page("gmail").WebButton("siginobj").click pls tell me whats wrong
Write program for identifyig duplicates in flight Departing from and Arriving in mercury tours(web application).
What are the data types supported by vbscript?
Find Out Length of an array without using Ubound?
hi, How will write a regular expression of date in VB scripting.
what is the standards used for writing the script in QTP
Both Static and dynamic arrays are handled by VB script. Is it true?
How to write Descriptive programming in .VBS file i wrote this code but it is giving error.. Dim qtApp set qtApp=createobject("QuickTest.Application") qtApp.Launch qtApp.Visible=True Set objIE = CreateObject("InternetExplorer.Application") objIE.visible = True objIE.Navigate "www.gmail.com" browser("title:=gmail").title("title:=gmail")
Mention if qtp generates vbscript code as we record actions, can't it possible to directly write using vbscript code when qtp does the same thing too?
How do i automate a website www.flyashx.com without having any test cases witin a week time.
What is the difference between do until loop and do while loop?
Explain different types of segment?