Python 自用程式碼(調整日期格式)

右介發表於2017-06-28

2017年6月28日 to 2017-06-28
2017年10月27日 to 2017-10-27
2017年12月1日 to 2017-12-01
2017年7月1日 to 2017-07-01

#coding=utf-8

def func(string):
    year = string.find(u'')
    month = string.find(u'')
    day = string.find(u'')
    if month-year==2:
        string = string.replace(u"",u"年0")
    if day-month==2:
        string = string.replace(u"",u"月0")
    return string.replace(u"","").replace(u"","-").replace(u"","-")
    
if __name__ == '__main__':
    l1 = u"2017年6月28日"
    l2 = u"2017年10月27日"
    l3 = u"2017年12月1日"
    l4 = u"2017年7月1日"
    print func(l1)
    print func(l2)
    print func(l3)
    print func(l4)

 

相關文章