I have an interesting task of finding a very first Date value in a Text field. There are no identifiers, sometimes the date would come in various formats such as '01/01/2015', '1/1/2015', 1/1/15', '1/01/15', etc. Format will always be Month, Day, Year; however, it could vary from mm/dd/yyyy, mm/dd/yy, m/dd/yyyy, etc.
For example:
The rain in Spain falls mainly on 01/01/2015 and then it ends between 03/02/2015 and 04/01/2015.
I want to capture "01/01/2015", because it is a very first date occurrence in the string.
Trying to figure out the easiest way to extract the very first date occurrence, but no such luck as of yet. Any suggestions?
Tks!