0

有没有办法用一个正则表达式匹配以下所有内容?如果不是,那么这样做的好/干净的方法是什么?

/resources/$
/resources/type$
/resources/type/$
/resources/category$
/resources/category/$
/resources/anything here that includes up to 1 slash and ends with that slash

由于存在 ,因此不应匹配以下内容something

/resources/type/something
/resources/category/something
4

2 回答 2

0

这应该做你想要的:

^\/([^\/]*\/?){,2}$

编辑错误:p

于 2012-08-11T10:47:40.690 回答
0

你可以使用这个:

^\/resources(\/[a-z]*\/?)?$
于 2012-08-11T10:53:09.527 回答