I had a working regex for date until I tested it in the iOS simulator. Apparently, iOS requires a month name (ex: Jan), two digit date and four digit number.
I'm new to regular expressions but here was my attempt, it was unsuccessful.
/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\s\d{2},\d{4}$/;