can anybody tell vb script code for alphanumeric and special
character .which is used in qtp the name text field.
Answer Posted / pravati
x="pravati.001@gmail@.com"
For i = 1 To len(x)
y=mid(x,i,1)
If isnumeric(y) Then
z=z&y
elseif asc(y)>=97 and asc(y)<=122 then
a=a&y
End If
Next
msgbox z
msgbox a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.
What is the difference between vb debugger and the script debugger?
I need to get some data from data base and store this
(retrieved) data in a excel sheet using VB script in QTP9.0
I have created connection for data base
I have created as excels sheet by using
Set XL=CreateObject("Excel.Application")
XLworksheet.cells(1,1).value= rs.fields.item("<
Explain about filter expression?
If else for do while select in vb script?
Which keyword is used to declare a variable in the vbscript language?
Why to use option explicit in vb script?
How to write VB script for login module?
Can u describe what kind of testing are for OTC derivates by banks.
How are arrays declared in the vbscript language?
i need to sort the data using qtp script for this how i need to write a qtp script
Explain a few date functions in vbscript
Write a Script for ATM in QTP
How regexp.execute method works?
What are the 2 ways in which a variable can be declared in the vbscript language?