how to store charecters of HARIBABU Using arrays
Answer Posted / 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 |
Post New Answer View All Answers
what is the object hyrarchy in QTP for a web based application
Out of the different type of operators, which are evaluated first and last in the vbscript language?
What is the main difference between function and sub-procedure?
Explain about filter expression?
Both Static and dynamic arrays are handled by VB script. Is it true?
What is event handling in vbscript?
Explain the .wsf files?
What is the use of the formatdatetime function in the vbscript language?
If a calulator having 3 buttons (of any number)in 3 of them one is not working properly due to which answer is wrong always. write a script to find out which button is not working properly ?
What is loose binding? Why is it not a good practice to use it?
how to set one column as primary key in QTP and fetch values accordingly
Explain the filter expression?
There are 5 web pages.write a script to click the button on 4th web page.
Differentiate javascript and vbscript?
If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?