I am pulling a datetime string from a text file report in the format of "Mon Feb 11 11:20:09 2023". From this I need to create a separate date string of mm/dd/yyyy and a separate time string of HH:MM:SS 24 hour format.\
The closest I've been able to is using:
toLocaleDateString = February 11, 2023 toLocaleTimeString = 11:20:09 AM CST