I've got a large chunk of text like this:
....advises that Friday 22nd March 2013 has the potential to be declared a day.....
I have to locate and then parse DateTime in it (Friday 22nd March 2013). I can locate it and use DateTime.TryParse to get almost everything, but the ordinal suffixes (st,nd,rd,th) are throwing me off.
When I'm constructing the format string before calling the TryParse method are there any wildcard characters I can use to take into account those suffixes? Or any other suggestions?
Thanks!