I have a string
value of 1 Jan
which indicates a date for batch program to run based on the date.
May I know if there is quick method to convert 1 Jan
to a DateTime
value which I can use to compare if it is today?
Otherwise, I guess substring
and replace
of characters may be the only alternative I can think of.
Thank you