ParseDatTime from string date and time

1
I've to strings, $object/date and $object/time. I know how I can use parseDateTime :parseDateTime($object/date, 'dd-MM-yyyy') But how can I use this to parse the time.
asked
1 answers
1

I guess that is just:

parseDateTime($object/date + ' ' + $object/time, 'dd-MM-yyyy HH:mm')

(or, what exactly are you trying to achieve?)

updated to the comments below

But David deserves the credits ;-).

answered