dateparse icon indicating copy to clipboard operation
dateparse copied to clipboard

GoLang Parse many date strings without knowing format in advance.

Results 65 dateparse issues
Sort by recently updated
recently updated
newest added

How can I use time.parse with this date return by this API. I need to define format after your lig as : ` time.Local = dateLocation date, err := dateparse.ParseIn(myDate,...

This package is amazing and hugely popular, and has been the best package for automatic date parsing in go for years! ⭐ Thanks @araddon for crafting this package with love...

I can split it up better so various additions and fixes are elsewhere. There is also the potential to make it more tolerant to duplicate white spaces. I also made...

Currently it will parse `Mon, 1 Dec 2008 14:48:22 GMT-07:00` into `2008-12-01 21:48:22 +0000 UTC` (giving special treatment to `GMT[+-]NNNN` as really another way of just specifying the offset `[+-]NNNN`....

For some reason it is not being able to parse Thu Jan 28 2021 15:28:21 GMT+0000 (Coordinated Universal Time). If the it is GMT+0100, it parses correctly but not GMT+0000

Added comma support and tests for this format: 04/02/2014, 04:08:09 4/2/2014, 04:08:09 04/02/2014, 04:08 AM 04/02/2014, 04:08 PM If I use luxon's `date.toLocaleString(luxon.DateTime.DATETIME_SHORT)` on my machine, the formats with the...

`layout, err := dateparse.ParseFormat("13-02-2015", dateparse.PreferMonthFirst(false))` This fails with error = `Could not find format for "13-02-2015"` Whereas, `layout, err := dateparse.ParseFormat("13/02/2015", dateparse.PreferMonthFirst(false))` parses successfully Are there any plans to support...

Formats like 02-01-2022 should be acceptable.

when i want to transfer a small unix timestamp 57600000 to time,it throws an exception “month out of range”. I read code and find the reason, the dateparse thinks 57600000...

Parse strict is failing for: `t, e := dateparse.ParseStrict("31-Oct-22")` Throwing error: This date has ambiguous mm/dd vs dd/mm type format. Why is ParseStrict not able to parse this?