我也在寻找解决方案,但找不到任何解决方案,所以我和一个朋友建立了一个工具来完成此任务。我以为我会回来分享一下,以防其他人觉得有用。
日期查找器-查找并提取文本中的日期
这是一个例子:
import datefinderstring_with_dates = ''' Central design committee session Tuesday 10/22 6:30 pm Th 9/19 LAB: Serial encoding (Section 2.2) There will be another one on December 15th for those who are unable to make it today. Workbook 3 (Minimum Wage): due Wednesday 9/18 11:59pm He will be flying in Sept. 15th. We expect to deliver this between late 2021 and early 2022.'''matches = datefinder.find_dates(string_with_dates)for match in matches: print(match)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)