(\d{1,2})\2(\d{1,2})/ const result = regex.exec(date) const year = result[1] // → 2019 const month = result[3] // → 12 const day ...
確定! 回上一頁