how to write regular expression for Date field?

Answers were Sorted based on User's Feedback



how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

Answer / a kiran kumar

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

how to write regular expression for Date field?..

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

Post New Answer

More QTP Interview Questions

wht is the difference between action and functio?

3 Answers  


What are the different types of checkpoints?

0 Answers  


I am not able to record yahoomail browser.its giving error like "The browser Application can't be launched .Posssibly the URL is wrong" So anyone can tell me what setting i have to do in qtp??

1 Answers  


I used child objects to get the no of weblist present in the weblist.now i need to select the items present in each weblist ?How to do so

0 Answers  


What is smart identification in QTP?

0 Answers   HCL,






write script for bitmap image?

0 Answers   CA,


• What type of testing questions will be asked for 2+ yrs exp people in interview?

0 Answers  


Define virtual object?

0 Answers  


I encountered with very strange problem in qtp while writing the script i written the code window"regexpwndclass:=XLMAIN").window"regexpwndtitle:=Open" ).Exit this code was working fine for about 10-15 times i executed the script but after some time qtp started giving the error with the same code the error is "Object doesnt support this method or function window(...).window(..)" then i modified the code with only window"regexpwndtitle:=Open").Exit in place of window"regexpwndclass:=XLMAIN").window"regexpwndtitle:=Open" ).Exit now again its working fine i cannot understand what thing is creating the problem if same code executed successfully in starting for about 10 times then why it is giving the error now can anyone give the reason .

0 Answers  


Where we write the FUNCTIONS, in Expert view (or) in any textfiles like Notepad and save it in Library functions folder? How to cal that functions to our script? How to save that functions to Function generator?

3 Answers  


How can I change object description or check point values in qtp?

0 Answers  


WHAT ARE THE SHORTCUT KEYS IN QTP?

4 Answers   TCS,


Categories