mirror of
https://github.com/araddon/dateparse.git
synced 2026-02-04 17:39:34 +00:00
add golang native format
This commit is contained in:
@@ -105,6 +105,7 @@ iterRunes:
|
||||
// 2014-05-11 08:20:13,787
|
||||
// 2014-04-26 05:24:37 PM
|
||||
// 2014-12-16 06:20:00 UTC
|
||||
// 2015-02-18 00:12:00 +0000 UTC
|
||||
switch r {
|
||||
case 'A', 'P':
|
||||
if len(datestr) == len("2014-04-26 03:24:37 PM") {
|
||||
@@ -373,6 +374,12 @@ iterRunes:
|
||||
} else {
|
||||
return time.Time{}, err
|
||||
}
|
||||
} else if len(datestr) == len("2015-02-18 00:12:00 +0000 UTC") {
|
||||
if t, err := time.Parse("2006-01-02 15:04:05 +0000 UTC", datestr); err == nil {
|
||||
return t, nil
|
||||
} else {
|
||||
return time.Time{}, err
|
||||
}
|
||||
}
|
||||
case ST_DIGITSLASH: // starts digit then slash 02/ (but nothing else)
|
||||
// 3/1/2014
|
||||
|
||||
Reference in New Issue
Block a user