如何将日期字符串与正则表达式匹配

时间:2018-07-16 10:03:53

标签: javascript regex typescript

我正在尝试使用以下代码检查输入值是否与日期格式YYYY-MM-DDYYYY-MM-DD - YYYY-MM-DD匹配,但是在输入2018-01-29上返回false。

  const singleDateRegex = new RegExp('\d{4}-\d{2}-\d{2}$');
  const rangeRegex = new RegExp('\d{4}-\d{2}-\d{2} \d{4}-\d{2}-\d{2}$');

  const matchSingle = singleDateRegex.test(value); //false
  const matchRange = rangeRegex.test(value);       //false

1 个答案:

答案 0 :(得分:1)

您必须转义RegExp构造函数中使用的\\\)。

为什么不使用正则表达式文字,它由包含在斜杠之间的模式组成:

const singleDateRegex = new RegExp(/\d{4}-\d{2}-\d{2}$/);
const rangeRegex = new RegExp(/\d{4}-\d{2}-\d{2}\s\d{4}-\d{2}-\d{2}$/);

console.log(singleDateRegex.test('2018-01-29'));
console.log(rangeRegex.test('2018-01-29 2018-01-29'));