how to write regular expression for Date field?
Answers were Sorted based on User's Feedback
Answer / raghu
To apply Regular expression for Date we have to split months
1) [0][1-9] because it accepts 01,02,...09 as months
2) [1][1-2] and this is for 10th,11th, 12th months
Now The Regular expression for whole date format is as follows
Example MM/DD/YY
[0][1-9][/][0-9][0-9][/][0-9][0-9] for 1 to 9 months
[1][1-2][/][0-9][0-9][/][0-9][0-9] for 10 to 12 months
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ratikanta
[0][1-9]|[1-2][0-9]|[3][0-1]-[0][1-9]|[1][0-2]-[1-9][0-9][0-9][0-9]
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naresh
30/12/12 format
(0-3)(0-3)/(0-1)(0-9)/(0-9)(0-9)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / biswarup
dd-mm-yy format then it will be
[[0-3][0-9]]&&[^3[2-9]^00]-[[01][0-9]]&&[^1[3-9]^00]-\d{2}
please rectify me if you find it to be incorrect or with
some minor error, as i'm not completely sure about the part
after '&&', i mean, the error is not in the logic but in the
syntax of using the AND and OR operators.
| Is This Answer Correct ? | 7 Yes | 8 No |
Answer / rajesh
[1-9]|1[0-2]/[1-9]|[1-2][0-9]|3[0-1]/19[0-9][0-9]|2[0-9][0-9][0-9]
This works for 1900 to 2999
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rajesh vanamala
MM/DD/YYYY
[0][1-9]|[1][0-2]/[0][1-9]|[1][0-9]|[2][0-9]|[3][0-1]/[1-9][0-9][0-9][0-9]
| Is This Answer Correct ? | 1 Yes | 2 No |
for example date formate is dd/mm/yy
than [0-3][0-9]/[0-1][0-2]/[0-9][0-9]
| Is This Answer Correct ? | 14 Yes | 18 No |
Answer / sow
[0-3][0-1]/[0-1][0-2]/200[0-9]
This would take only 2001 to 2009. It will not accept 1999.
| Is This Answer Correct ? | 2 Yes | 7 No |
Answer / ashok
For example date format is dd/mm/yy
than [0-3][0-9]/[0-1][0-9]/[0-9][0-9]
| Is This Answer Correct ? | 4 Yes | 15 No |
Answer / satyanarayana
If the date field is in the following format
'mm/dd/yy'
[0-1][0-9]/[0-3][0-9]/200[0-9]
| Is This Answer Correct ? | 4 Yes | 17 No |
what is Compile Module in QTP? what exactly it contains Functions or Actions?
I AM TRYING PORT CODE FROM WINRUNNER TO QTP AND DON'T KNOW TO HOW TO CHECK THE ERRORS. IN WINRUNNER FUNCTION RETURNS EIGHER 0 OR -1 AGAINST WHICH RESULT CAN BE MADE PASS OR FAIL BUT IN QTP I DON'T SEE FUNCTIONS RETURNING ANY VALUE. APPRECIATE IF ANYONE COULD HELP ME CONVERTING FOLLWOING WINRUNNER CODE TO QTP. set_window("Customer Service"); rc = web_obj_get_text("Summary","#2","#4",ssn,""," ",1); if (rc != E_OK) { report_msg("[GetSubscriberSummary] Could Not get subscriber SSN; rc = "&rc); myRC = rc; } else { ssn = StripBlank(ssn); if (DEBUG) report_msg ("[GetSubscriberSummary] SSN: "&ssn); }
Why u don’t like recording the script and writing the script
what is difference between calling a function and reusing an action?
On what document base Descriptive programming is written if build is not yet ready ?
I am automating a Java application. This application is developed using SWT. I am not able to get the GUI object. Even i tried with Java add-in. In tutorial it states SWT is not supported any idea. Anybody worked in such appln. My question is whether it is possible to record the GUI object of SWT appln. how it is possible.
What is the extension of script and object repository files in QTP?
I m in new and want to learn QTP. Is any website which provide free QTP video training.....also can downlaod....
what is the difference between Table checkpoint and Database checkpoint in QTP
Today only i joined in this site. Can u please tell me definition of parameterization. and how i can do the parameterization?
Hi,iam new to automation and i have 1 year experience in manual testing.I have a little bit idea about QTP9.0 .But i have no idea about script writing using VB.Please help to learn script writing.
I have the script like this: Browser("Philips Web Login").Page("Philips CL DMS2 Application").Frame("ScopeFrame").Link("DC3701737 (Active)").Click in which the value "DC3701737" will get changed and i have to use the same value in so many places. If i want to get that value "DC3701737" in to a variable, how? pls let me know if you didn't get the question. Help me out in this.