1

我有这样的正则表达式模式:

^[a-zA-Z0-9]+\s(INV|FINAL)\s([0,1]?\d{1}\s(([0-2]?\d{1})|([3][0,1]{1}))\s(([1]{1}[9]{1}[9]{1}\d{1})|([2-9]{1}\d{3})))(\s{1})\d+$

此模式应验证文档名称是否正确 像这样的文档名称应与此模式匹配:

1207181 FINAL 12 13 12 1533

一开始 - 只是数字,就像 id。

下一个空间。

下一个 INV 或 FINAL 字。

格式为 dd mm yy 的下一个日期。

接下来是一些数字。

有人可以帮我解决这个问题吗?

4

1 回答 1

0

您正在寻找:

^(\d+)\s(INV|FINAL)\s(0[1-9]|[12]\d|3[01])\s(0[1-9]|1[0-2])\s(\d{2})\s(\d+)$

解释:

^                      start at the beginning of the string
(\d+)                  capture any digit
\s                     one whitespace
(INV|FINAL)            captrue INV or FINAL
0[1-9]                 a 0 and a digit from 1 to 9
[12]\d                 a 1 or a 2 and a digit
3[01]                  a 3 and a 0 or a 1
(0[1-9]|[1-2]\d|3[01]) capture a digit from 01 to 31
(0[1-9]|1[0-2])        capture a 0 and a digit from 1 to 9 or a 1 and a digit from 0 to 2 | so capture a digit from 01 to 12
(\d{2})                capture two digits
$                      stop at the end of the string

它不会匹配1207181 FINAL 12 13 12 1533,因为13.

于 2013-01-25T11:31:38.680 回答