我正在尝试使用正则表达式调用来搜索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
这可行,但我无法弄清楚如何使用通配符(*)来解决此问题。
答案 0 :(得分:2)