2

我正在寻找解码正则表达式。有没有办法检查以下正则表达式的含义:

^(PC([Y\\d])|GC([Y\\d])|Y|\\d)\\d{4,5}$
4

3 回答 3

10

您可以在http://www.myezapp.com/apps/dev/regexp/show.wshttp://www.debuggex.com/使用正则表达式分析器


^ = start of string
() = capturing groups
[] = character classes
\d = digit in 0-9
\\ = literal backslash
| = OR
{} = count of leading item
$ = end of string
于 2013-03-11T19:32:23.717 回答
3

这是正在发生的事情的分解。

正则表达式: ^(PC([Y\\d])|GC([Y\\d])|Y|\\d)\\d{4,5}$

 1. ^        -  Beginning of line  
 2. (        -  Beginning of a capture group
 3. PC       -  Finds `PC` exactly  
 4. ([Y\\d]) -  Creates a capture group for a Y or a single digit (0-9)
 5. |        -  This is an OR statement
 6. GC       -  Finds `GC` exactly
 7. ([Y\\d]) -  Same as 4
 8. |        -  This is an OR statement
 9. Y        -  Finds `Y` exactly
10. |        -  This is an OR statement
11. \\d      -  This looks for a single digit (0-9)
12. )        -  End of capture group.  Lines 3-11 will be in this capture group
13. \\d{4,5} -  This will look any digit exactly 4 or 5 times
14. $        -  End of line

其中有 3 个捕获组:

1. (PC([Y\\d])|GC([Y\\d])|Y|\\d)
2. ([Y\\d])  (The first one)
3. ([Y\\d])  (The second one)

这是一个有效匹配的列表(可以找到任何数字,我只是使用 123456 来显示可以有多少个数字位置):

  • PCY1234
  • PCY12345
  • PCY1234
  • PCY12345
  • PC12345
  • PC123456
  • GC12345
  • GC123456
  • GCY1234
  • GCY12345
  • Y1234
  • Y12345
  • 12345
  • 123456

是 RegExr 的链接,其中包含每个匹配项的捕获组的说明。

此外,double \in的原因\\d是为了逃避\for Java。并非所有语言都需要这个,据我了解,有些语言需要 3。如果您在上面的 RegExr 中注意到,我将它们删除,以便 RegExr 可以正确解析 Regex。

于 2013-03-11T21:18:05.087 回答
0

Regexper也是分析正则表达式的好工具。

Regexper 生成的图像

于 2017-07-05T13:03:43.817 回答