与任何主机匹配的网址的正则表达式

我试图断言一个正则表达式,该正则表达式匹配任何主机,并且基本上匹配该URL结尾 /profile/documents/<uuid>


下面的此正则表达式完全 匹配,/profile/documents/<uuid>但是如何修改此正则表达式以匹配以结尾的任何内容/profile/documents/<uuid>?


expect(res.headers.location).to.match(/^\/profile\/documents\/[A-F\d]{8}-[A-F\d]{4}-4[A-F\d]{3}-[89AB][A-F\d]{3}-[A-F\d]{12}$/i) // Regex for /profile/documents/:uuid

我希望匹配的示例是:


http://localhost:3000/profile/documents/8ce825b7-b8c2-468b-a4c8-88eedea5b4c2

http://127.0.0.1/49943/profile/documents/8ce825b7-b8c2-468b-a4c8-88eedea5b4c2


当年话下
浏览 128回答 2
2回答

拉丁的传说

简单-只需^在开始时删除即可。(这是相匹配的字符串的开始,所以只有/profile/document/<uuid>将已匹配-删除它匹配任何字符串结尾的/profile/document/<uuid>):/\/profile\/documents\/[A-F\d]{8}-[A-F\d]{4}-4[A-F\d]{3}-[89AB][A-F\d]{3}-[A-F\d]{12}$/i

函数式编程

你可以试试这个&nbsp;.*\/profile\/documents\/[a-f\d]{8}-[A-f\d]{4}-4[A-f\d]{3}-[89ab][a-f\d]{3}-[a-f\d]{12}$
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript