我试图断言一个正则表达式,该正则表达式匹配任何主机,并且基本上匹配该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
拉丁的传说
函数式编程
相关分类