📜  pyton 识别任何日期时间格式 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:42.274000             🧑  作者: Mango

代码示例1
import datefinder
string_value = " created 01/15/2005 by ACME inc.and associates.January 4th,2017 at 8pm"
matches = datefinder.find_dates(string_value)            
for match in matches:
    print("match found ",match)