我需要一种方法来识别具有相似模式的 url,例如true
匹配时返回的函数
http://mysite.com/page/123
and
http://mysite.com/page/456
或者
http://mysite.com/?page=123
and
http://mysite.com/?page=456
或者
http://mysite.com/?page=123¶m=2
and
http://mysite.com/?page=456¶m=3
我不需要在这里检查 url 的有效性,只需找出模式是否相同。我可能需要一个正则表达式,但不知道该怎么做。任何人都可以帮忙吗?谢谢。