如何在正则表达式调用中使用通配符?

时间:2015-10-07 19:44:44

标签: regex url

我正在尝试使用正则表达式调用来搜索url模式。我该如何编写一个正在寻找特定域的正则表达式调用直到某一点?

例如: 在网址中查找https://www.example.com/hello_world的任何内容以及“/ hello_world”之后的任何其他内容的调用仍为true

https://www.example.com/hello_world/chicago

https://www.example.com/hello_world/newyork

依此类推。

我目前有:

http:\/\/www\.example\.com\/hello_world

这可行,但我无法弄清楚如何使用通配符(*)来解决此问题。

1 个答案:

答案 0 :(得分:2)

你可以尝试

^https:\/\/www\.example\.com\/hello_world(?=\/|$).*$

DEMO REGEX

(?=\/|$)是正向前瞻\/$(中断线)