Skip to content

Instantly share code, notes, and snippets.

@rauschma
Created May 16, 2017 00:35
Show Gist options
  • Save rauschma/1f32f5bf55c3392c8d591230565b2795 to your computer and use it in GitHub Desktop.
Save rauschma/1f32f5bf55c3392c8d591230565b2795 to your computer and use it in GitHub Desktop.
const RE_YEAR = re`(?<year>[0-9]{4})`;
const RE_MONTH = re`(?<month>[0-9]{2})`;
const RE_DAY = re`(?<day>[0-9]{2})`;
const RE_DATE = re`${RE_YEAR}-${RE_MONTH}-${RE_DAY}`;
const matchObj = RE_DATE.exec('1999-12-31');
const year = matchObj.groups.year; // 1999
const month = matchObj.groups.month; // 12
const day = matchObj.groups.day; // 31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment