dateparse
dateparse copied to clipboard
GoLang Parse many date strings without knowing format in advance.
For https://github.com/araddon/dateparse/issues/130
'Z' is not parsed after timePeriod '.'. In below sample, the timezone is not detected and ParseIn will have incorrect result. ```go func main() { loc, _ := time.LoadLocation("Asia/Shanghai") inputs...
Fix for #127
### What did you do? https://play.golang.org/p/uTKVv1D1zcf ### What did you expect to see? ``` 2021-11-17 00:00:00 +0000 UTC 2021-11-17 00:00:00 +0000 UTC 2021-11-17 00:00:00 +0000 UTC 2021-11-17 00:00:00 +0000 UTC...
=INFO REPORT==== 8-Mar-2018::14:09:27 === closing AMQP connection (62.210.247.209:43887 -> 62.210.129.60:5672
Hello, I'm using ` t, err := dateparse.ParseAny(v)` I'm trying the following input, and I'm getting ``` Parsing: 2017-04-03 22:32:14.322 CET => 2017-04-03 22:32:14.322 +0000 UTC => failure Parsing: 2017-04-03...
Would parsing thing like "yesterday" and "previous month" be something that's in the scope of this project?
Request: Support for YYYYMM , “201910”
Good Morning, On the following RSS feed the date is not being parsed correctly: https://digi.ninja/rss.xml The format of the is "Sun, 07 Jun 2020 00:00:00 +0100". It appears dateparse is...