标签: javascript regex
我不想在斜线之后或之前得到所有东西。
我想检查是否存在最后的斜杠。
例如
http://google.com/ --no http://google.com/abc --no http://google.com/abc?c=1 --no http://google.com/abc/ --yes http://google.com/abc/?c=1 --yes
答案 0 :(得分:1)
您可以使用此正则表达式:
/https?:\/\/[^\/]+\/.*?\/(?=\?|$)/igm
RegEx Demo