How to return only alpha bate string from an string str =
"bibhu@#$%&das&*)(SUndar"
Answer Posted / satishraja
str ="bibhu@#$%&das&*)(SUndar"
L=len(str)
For i=1 to l
x=left((right(str,l-i+1)),1)
If ASC(ucase(x))>=65 and ASC(ucase(x))<=90 then
Print x
End If
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Mention how to assign a date value to a variable?
For a webbased application:- what should be code in expert veiw, for retrieving a single column name "username" from a server and checking whether exported "username" from datatable doesn't exist in server. suppose i have saved in excelsheet a username="gayatri" , which is exported, then checked for whether this username "gayatri" exist in server database or not ? if exist then allow to enter new username, which should be again checked for in loop , or else come out of loop and enter a distinct "username". plz let me have this answer in my id gayatrisahooin@hotmail.com
while using Keyward driven framework in QTPif new requirements are added how to manage it...plz ans
HOw we can apply web service checkpoint in QTP 9.5? I tried it out with net connection also. But not getting success.
How will you convert a string to upper case string using vbscript?
What is the use of option explicit statement?
Hi Friends my Question is very simple,in Manual testing when we click on a hyper link it directs us to the relavent page or it re-directs us to the current page,so there we can easily write testcase but same thing if we do in automation script using QTP & need to generate report using Reporter.report event how we will do it?thanks in advance...
How will you get the exponent of the given number in vbscript?
Which operator can be used to check if two numbers are equal or not in vbscript?
How will you format a number in percetage format in vbscript?
Mention the environments where vbscript could be run?
What are the special sub-types in vbscript?
How many types of operators are available in the vbscript language?
Explain different types of segment?
write a function to read the items from combobox of Flight reservation & save in excel (QTP)??