How do you find out whether the string is Numeric or Alpha
numenric.Suppose..'QTP is an automation testing tool 12345'
How should I know it is alphanumeric.Can any one please
write the code for this
Answers were Sorted based on User's Feedback
Answer / ashish sharma
str = "QTP is an automation testing tool "
Dim ianRegEx
Set ianRegEx = New RegExp
ianRegEx.Pattern = "[a-z]+[\s]*[0-9]+"
ianRegEx.Global = True
ianRegEx.IgnoreCase = True
msgbox ianRegEx.Test(str)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / a.thirumalareddy@gmail.com
use this function it will help u..
Function IsAlphaNumeric()
If IsNull(str) Then str = "QTP is an automation testing tool 12345"
Dim ianRegEx
Set ianRegEx = New RegExp
ianRegEx.Pattern = "[^a-z0-9]"
ianRegEx.Global = True
ianRegEx.IgnoreCase = True
IsAlphaNumeric = (str = ianRegEx.Replace(str,"QTP is an automation testing tool 12345"))
msgbox IsAlphaNumeric
End Function
call IsAlphaNumeric()
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / xyz
Hi Tirumalareddy thanks for giving the reply.I have
executed the script.It is working fine for the above
srting.but if I removed 12345 from the string,still it is
displaying TRUE.I think it is not correct.anyhow thanks for
reply
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mrclock
A.thirumalareddy was on the right track, but here is a
revised and working version of his code:
Function IsAlphaNumeric()
Dim strText: strText = "QTP is an automation testing tool
12345" 'Search String
Dim ianRegEx
Set ianRegEx = New RegExp
ianRegEx.Pattern = "[^a-z0-9]" 'Define Search Pattern
ianRegEx.Global = True 'Apply Globally
ianRegEx.IgnoreCase = True 'Ignore upper/lower case
IsAlphaNumeric = ianRegEx.Test(strText) 'Use Test method
for a True/False test
msgbox IsAlphaNumeric 'Display True/False
End Function
call IsAlphaNumeric()
| Is This Answer Correct ? | 1 Yes | 1 No |
why we use environment variables
I have 5 no.of Action in my Test. Out off which i should make 3rd action as my start-up action. How should i make it?
On the website, the protocol has been changed https: to https what you will do? Tell me your approach?
Hi... Can anybody help me to write the vbscript for this question..!!! Am having a string "HELLO WORLD", i want to find how many "L"s are there.....????? --> HANEEF <--
Dear All, How to generate Pass or Fail Report in QTP without using Reporter.Report Event Method ? Thanks Balaji
It is regarding VBScript, how to export our function results to ExcelSheet through VBscripting. Ex: I have written add function, that result should export to Excel.
How to get Traceability matrix from TD?
Key word driven framework
If 2 gmail browsers are opened in our system, how to enter the mail id and password into second browser by using discriptive program?
hi guys, pls tell me for testing institution training hub, hitech city is best or not?
normally by going through the object properties in object spy we write descriptive programming(correct me if i am wrong). But how or from where can we get the object properties in the object spy?plzzzzzz do answer
How will you handle java tree in qtp?