I want to match dates that have the following format:
2010-08-27, 2010/08/27
Right now I am not very particular about the date being actually feasible, but just that it is in the correct format.
please tell the regular expression for this.
Thanks
|
I want to match dates that have the following format: 2010-08-27, 2010/08/27 Right now I am not very particular about the date being actually feasible, but just that it is in the correct format. please tell the regular expression for this. Thanks |
|||||||
|
|
You can use the
output:
So catching
To allow for various formats you could either test for all possibilities, or use
|
|||||
|
|
dateutil package has a quite smart dates parser. It parses a wide range of dateformats. http://pypi.python.org/pypi/python-dateutil |
|||
|
|
|
You can use this code:
updated regula expression below:
|
|||||||||||
|
|
Use the
|
||||
|
|