Rene,
You can use a substring function in combination with a find function to split the string.
Say your datetime in a string is called $var then the function would be substring($var, 0, find($var, ' ')) to get the date portion.
For the time portion use substring($var, find($var, ' ')+1)