I would like to extract a date which is a string in item.description and the output it as item.date
?
Can someone help me?
I would like to extract a date which is a string in item.description and the output it as item.date
?
Can someone help me?
For dates like this: 01/01/10 you would put .*(\d{2})/(\d{2})/(\d{2}).* For dates like this: 01-01-2010 you would put .*(\d{2})-(\d{2})-(\d{4}).*