Created
May 16, 2017 00:35
-
-
Save rauschma/1f32f5bf55c3392c8d591230565b2795 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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