How to return only alpha bate string from an string str =
"bibhu@#$%&das&*)(SUndar"
Answer Posted / pankaja yathindrakumar
'How to return only alphabate string from an string str = "bibhu@#$%&das&*)(SUndar"
str="bibhu@#$%&das&*)(SUndar"
for i=1 to len(str)
x=mid(str,i,1)
if Asc(x)>=Asc("A") And Asc(x)<=Asc("z") then
t=t&x
End If
Next
Msgbox t
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of on error resume next statement?
Can anyone send me a vb script function for verifying the functionality of active links on a web page
after medical test,when will be the police verification
regular expression that will recognize a browser as long as its name property starts with mybrowser
Write a Script for ATM in QTP
write any ttest cases using check points and parameterization
Which loop is used in case of arrays in the vbscript language?
Which operator is used to perform the comparison among 2 operands in the vbscript language?
why do u choose to go for testing why cant for devoloping
Mention what is the main difference between function and sub-procedure?
wht must be the interview question on corinthian information technology solutions incorporated.
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 is the difference between VBScript and JavaScript?
Explain the support of asp for vb script functionality?
hi all, i had a question, that how to find out hiding a coloumn in a table i had a table having the following column names NAME DESCRIPTION CREATED TIME CREATED USER if i right clicked on a NAME column it will displays a menu having the same column names in a list like NAME DESCRIPTION CREATED TIME CREATED USER with check boxes.if i unched any check box, that column name should not be appear in the main table column names could anyone please solve this problem?