We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add strptime method or method that converts strftime format to go-like format? Something like that:
strptime
func fromStrftime(s string) (layout string, err error) { xx, err := strftime.New(s) if err != nil { return } referenceTime, err := time.Parse(time.RFC3339Nano, "2006-01-02T15:04:05.999999999+07:00") if err != nil { panic(err) } layout = xx.FormatString(referenceTime) return }
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion, but no, not in this library. I mean, it's called strftime for a reason :)
strftime
Sorry, something went wrong.
No branches or pull requests
Is it possible to add
strptime
method or method that converts strftime format to go-like format?Something like that:
The text was updated successfully, but these errors were encountered: