I have a big piece of text:
.... advises that Friday, March 22nd, 2013 may be declared a day ...
I need to find and then analyze DateTime (Friday March 22, 2013). I can find it and use DateTime.TryParse to get almost everything, but the ordinal suffixes (st, nd, rd, th) throw me away.
When I create a format string before calling the TryParse method, are there any wildcards that I can use to account for these suffixes? Or any other suggestions?
Thank!
source
share