How to split a string in half, into two variables, in one statement?
19:36 23 Jun 2018

I want to split str in half and assign each half to first and second

Like this pseudo code example:

first,second = str.split( middle )
ruby string