How to remove the spaces in a string
Ex: "this is apple"
Answer Posted / eswar
s = "this is apple"
x = Split(s," ")
For each i in x
y=y&i
Next
MsgBox y
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
How to find the font in qtp. Scenario:After entering the username and passwd you will be navigate into the "welcome:Username" page.Now I want to extarct font for this message.
What are the environments supported by vbscript language?
Mention what is select case statement?
Mention what is the use of option explicit in vbscript?
Explain the support of asp for vb script functionality?
How will you format a number in percetage format in vbscript?
Which function allows you to instantiate an object given its programmatic identifier or progid?
Explain sga memory structures?
What is the difference between function and procedure?
Mention what is variant in vbscript?
What is the purpose of drive object of scripting.filesystemobject class in vbscript?
How to use QTP Object in .vbs(vbscript file) file Ex: Browser().., wait(), exist() and etc...
1.I want to establish connection with excel and also want to fetch the data using SQL queries. 2.the code should be written in such a way that in future if I want to migrate from excel to MS excess database , then there should be minimal changes.
What are the 2 ways to pass a value to the function?
Explain what is loose binding? Why is it not a good practice to use it?