埃菲尔铁塔:使用''格式创建日期时间

时间:2019-03-29 11:58:14

标签: eiffel

似乎我使用这种方法从字符串创建日期时间是错误的,知道为什么吗?前提条件违反了fig.subplots_adjust(top=0.7,bottom=0.3)

date_time_valid: date_time_valid (s, code)

1 个答案:

答案 0 :(得分:1)

根据documentation,字符'T''Z'不是有效的格式说明符。因此,需要用有效的替换它们,并相应地更改格式字符串:

        s := "2019-03-28T15:28:02Z"
        s.replace_substring_all ("T", " ")
        s.replace_substring_all ("Z", "")
        create t.make_from_string (s, "yyyy-mm-dd hh:mi:ss")