Hi everyone,
I have a list of strings called myStrings, and there is exactly one element containing "7 November 2009".
I can pick off that element using StringMatchQ as
StringMatchQ[myStrings,
DatePattern[{"DayShort", " ", "MonthName", " ", "Year"}]]
But if I use Position
Position[myStrings,
DatePattern[{"DayShort", " ", "MonthName", " ", "Year"}]]
it returns {}. What am I doing wrong?
Gregory