How do u write a regular expression for date (dd/mm/yyyy)
field ?
Answers were Sorted based on User's Feedback
(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d
0 - selects '0' Literally
[1-9]- selects the range between 1 to 9
[012] - selects either 0 or 1 or 2
[0-9] - selects the range between 0 to 9
[- / .] - selects either - or / or .
(19/20) - selects either 19 or 20 literally
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ghazal
([0][1-9]|[1-2][1-9]|[3][0-1])-([0][1-9]|[1][0-2])-d{2}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / a
(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)
[0-9]{2}
Is This Answer Correct ? | 3 Yes | 6 No |
Is it possible to change the property value at runtime? How it is possible?
What is clean sweep?
how to find that a file has been completely downloaded or not? I told that "download Complete" pop up. but he told the tool doesn't recognize the pop up
How will we compare the texts in the two word files using QTP writing the script in Descriptive Programming. Thanks
what is the general issues faced while using automation tool Qtp9.0
What are associated files in QTP?
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
How does quicktest professional (qtp) identifies the object in the application?
How is a Step generator used in UFT?
Hi, this is venkatesh. Q: I have 10 files in a folder(say D:\). Out of which there are some .txt, .xls, .doc. I want to know how to get the count of each file using qtp? If U have any ans, plz write script for that...
What is the quicktest professional (qtp) testing process?
While recording a login window QTP is identifying only parent window,then how can u identify the child objects.