datetime = '0000-00-00 00:00:00'.split('-')
Right now it just splits it at the hyphen, but is it possible to split this string at both -'s and :'s ?
|
|
|
|
|
|
|
One idea would be something like this (untested):
Or this, which fits your data better.
|
|||
|
|
|
|
I'm guessing you also want to split on the space in the middle:
|
||
|
|
|
|
Using regexps, and using a pattern to match the desired format,
A more verbose option, named groups, will pair field names with values (for @skurpur).
|
||||||
|
|
|
Maybe what you really want is to parse the date
|
||||
|