正则表达式提取域名

时间:2018-11-24 09:56:51

标签: regex regex-negation

如何提取没有反斜杠的域名,我快完成了。 https://regex101.com/r/g1Rtei/1

\w+\.[a-z]\w[a-z]\/

https://cartsyard.com/wp-login.php http://www.regexcookbook.com/index.html或/index.html#fragment。

我需要没有反斜杠的域名/

1 个答案:

答案 0 :(得分:-1)

您可以像这样使用?=\w+\.[a-z]\w[a-z](?=\/)
有关详细信息,请访问:https://regex101.com/r/g1Rtei/2