Skip to content

Instantly share code, notes, and snippets.

@AlexPinhasov
Last active February 24, 2019 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexPinhasov/f894734d501a8e3f906fafe6bae7eb4e to your computer and use it in GitHub Desktop.
Save AlexPinhasov/f894734d501a8e3f906fafe6bae7eb4e to your computer and use it in GitHub Desktop.
private func locateCorrectFormat(for dateString: String) -> Date {
for dateFormat in DateFormats.allCases {
if let date = parse(dateString, using: dateFormat) {
return date
}
}
return useRegexToExtractDate(from: dateString)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment