Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在测试一个网站,并且需要使用正则表达式来定位我想要包含在测试中的页面。
我将只定位在 URL 中都有一个斜杠的产品页面(这些 URL 中不显示 http://)。
以下是我需要匹配的 URL:
我想要的看起来像这样 www.mysite.com/just-on-slash
我不想要的看起来像这样:www.mysite.com/more-than-one/slash www.mysite.com
这应该适用于您的情况:^[^/]+/?[^/]+$
^[^/]+/?[^/]+$
为了使答案是通用的,最后只需要一个斜杠/?,如下所示: ^[^/]+/?[^/]+/?$
/?
^[^/]+/?[^/]+/?$