Hello all. I am getting the month and day from a table in a SQL database where I have to strip out any "/" or dashes because of an issue with user data entry. For example, 12/31 might be
1231 or 12-31 or 12/31. Another issue is lets say March 1st might be,
0301 or 3-01 or 03/01 etc.
So after I get that I attach the current year so lets say I might have 3012003 in a string. How can I convert this to be in date format the best way as MM/DD/YYYY. Thanks all.
1231 or 12-31 or 12/31. Another issue is lets say March 1st might be,
0301 or 3-01 or 03/01 etc.
So after I get that I attach the current year so lets say I might have 3012003 in a string. How can I convert this to be in date format the best way as MM/DD/YYYY. Thanks all.