Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
采用以下日期输入:
01/01/2012, 1-1-2012, 2012-01-20, 01012012, 20120101, 1.1.2012, 01.01.2012
我将如何创建一个将任何典型日期字符串转换为 datetime.date 对象的函数。我想你会先去掉任何非数字字符,然后做一些正则表达式识别。
让我们假设如果年在前,那么月在第二,如果年在最后(第三),那么月在前。这里最好的功能是什么?
strptime与此格式表和split一些try/catch块一起使用。
strptime
split
try/catch