05-07-2008, 12:51 PM
Thanks a lot for your reply
Since the date format is 5/7/2008 i had to remove 0 from the below string and it worked nicely...
so the reg expression is used is
Thanks
Shashi
Since the date format is 5/7/2008 i had to remove 0 from the below string and it worked nicely...
Code:
(0[1-9]|1[012])[//](0[1-9]|[12][0-9]|3[01])[//]200[0-9])
so the reg expression is used is
Code:
([1-9]|1[012])[//]([1-9]|[12][0-9]|3[01])[//](200[0-9])
Thanks
Shashi