您好我在创建与特定网址集匹配的正则表达式时遇到问题。
http://www.somedomain.com/example/some-other-page/news/?p=12失败
这是我到目前为止所拥有的^ http://www.somedomain.com(/(some-page)(/ chat)(/?)(\?。*)?)我不是很舒服用正则表达式
答案 0 :(得分:0)
I solved this problem using regex101.com. this is the reg-ex i came up with ^http://www.somedomain.com(/(?:some-page|example)(/(?:chat/\?p=123|\?p=4321))(\?.*)?). Thanks