1

正则表达式不是我的强项,如果可能的话,我希望对此有所帮助:

我需要创建一个递归匹配 RESTful 路径的正则表达式。目的是创建一个匹配这个正则表达式的 Symfony 路由。以下是我所说的 RESTful 路径的一些示例:

/resources
/resources/123
/resources/123/children-resources
/resources/123/children-resources/123
/resources/123/children-resources/123/grandchildren-resources

等等...

基本上,我希望这种模式无限重复一次或多次:

^\/[a-z]+(\-[a-z]+)*(\/[0-9]+)?$

请注意,要访问子资源,必须存在父资源的标识符。

我在这里列出了一个简短的单元测试列表(仅用于开始的两级路径): https ://regex101.com/r/Hxg0m4/2/tests

我搜索了关于同一主题的问题,但没有一个与我的问题真正相关。我还尝试对上面的正则表达式进行一些修改——比如+在正则表达式末尾使用符号,或者使用(?R)... 它从未通过我的单元测试。

任何帮助将不胜感激。

PS:这是我关于stackoverflow的第一个问题,请不要犹豫,告诉我如何更好地提出我的问题。

4

1 回答 1

3

这种递归模式应该有效:

^(\/[a-z]+(?:-[a-z]+)*(?:$|\/\d+(?:$|(?1))))

解释:

^                       // assert start of string
(
    \/                  // start with a slash
    [a-z]+(?:-[a-z]+)*  // followed by a word
    (?:                 // then, either:
        $               // end of string
    |                   // or:
        \/              // a slash
        \d+             // followed by digits
        (?:             // then, either:
            $           // end of string
        |               // or:
            (?1)        // recurse the entire pattern (except the start of string anchor)
        )
    )
)
于 2017-02-23T17:09:44.700 回答