Skip to content

Instantly share code, notes, and snippets.

@yasserhussain1110
Last active April 19, 2017 17:45
Show Gist options
  • Save yasserhussain1110/ad411e32bf2b57cbd6ae91e681287329 to your computer and use it in GitHub Desktop.
Save yasserhussain1110/ad411e32bf2b57cbd6ae91e681287329 to your computer and use it in GitHub Desktop.
def parse_natural(input) do
try do
{:ok, data_with_comma} = Timex.parse(input, "{Mfull} {D}, {YYYY}")
catch
:error, _ -> Timex.parse(input, "{Mfull} {D} {YYYY}")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment