MATLAB: Date and Time from Text with Literal Characters, Part 2

MATLAB

I now have a table
Date Visitors
'Jan 1 2020' 100
'Jan 2 2020' 50
I want Matlab to convert the string 'Jan 1 2020' into "date" format.
talks about using datetime to convert "strings" into "date" format. But does not seem to cover this case. Please advise.

Best Answer

datetime(YourTable.Date, 'InputFormat', 'MMM dd uuuu')