Hello,
This should be a simple question, any help would be appreciated.
I am currently working with a date and time variable ("submissiondate") of the following format:
dd/mm/yyyy hh:mm:ss
12/24/1901 02:34:05
I want to split the variable parsing it at the space, so that I can isolate the date part of the variable. I haven't been able to find a command to split the numeric like this. I tried creating a string out of it to split it that way, but I am met with the "cannot be generated reversibly" message. For clarity, my desired outcome is the following:
submissiondate1 submissiondate2
12/24/1901 02:34:05
Thank you very much in advance
This should be a simple question, any help would be appreciated.
I am currently working with a date and time variable ("submissiondate") of the following format:
dd/mm/yyyy hh:mm:ss
12/24/1901 02:34:05
I want to split the variable parsing it at the space, so that I can isolate the date part of the variable. I haven't been able to find a command to split the numeric like this. I tried creating a string out of it to split it that way, but I am met with the "cannot be generated reversibly" message. For clarity, my desired outcome is the following:
submissiondate1 submissiondate2
12/24/1901 02:34:05
Thank you very much in advance
Comment