在字符串中搜索日期和 return 作为数组 NodeJS
Search String for dates and return as an array NodeJS
我将如何在 NodeJS 中搜索日期字符串?
有没有类似https://pypi.org/project/datefinder的npm插件?
日期格式类型示例
Chambersburg, PA, US), (June 1st 5)
(#Langley,B.C,CAN) (5/31/2019)
(#Raleigh, NC, USA), ( by May 31, 2019)
(#Guadalajara, JAL, Mexico), (June 2nd 2019)
(#Bowling Green, OH, US) (Repayment of 5 on 05/30 and 5 on 06/13)
有一个广泛使用的 JavaScript 库叫做 Moment。检查 Moment Parsing Docs
举几个例子:
moment("12/25/1995", "MM-DD-YYYY");
moment('2012 juillet', 'YYYY MMM', 'fr');
我将如何在 NodeJS 中搜索日期字符串?
有没有类似https://pypi.org/project/datefinder的npm插件?
日期格式类型示例
Chambersburg, PA, US), (June 1st 5)
(#Langley,B.C,CAN) (5/31/2019)
(#Raleigh, NC, USA), ( by May 31, 2019)
(#Guadalajara, JAL, Mexico), (June 2nd 2019)
(#Bowling Green, OH, US) (Repayment of 5 on 05/30 and 5 on 06/13)
有一个广泛使用的 JavaScript 库叫做 Moment。检查 Moment Parsing Docs
举几个例子:
moment("12/25/1995", "MM-DD-YYYY");
moment('2012 juillet', 'YYYY MMM', 'fr');