有人可以给我正则表达式来匹配/this/is/the/path
或/this/is/the/path/
之类的匹配项并匹配:
$1=this $2=is $3=the $4=path
([^/]+)/
匹配一个,但我不太确定如何重复它。
仅供参考:这是一个mod重写RewriteRule匹配。
答案 0 :(得分:0)
如果您想要定义编号的组,则必须自己重复:
/([^/]+)/([^/]+)/([^/]+)/([^/]+)/? this is the path
答案 1 :(得分:0)
如果mod-rewrite支持它([^ /] +){1,4}应匹配1到4组。根据需要/期望调整数字。