gpt4 book ai didi

JavaScript Url Catcher 像 Twitter (Regexp)

转载 作者:行者123 更新时间:2023-12-02 19:50:40 25 4
gpt4 key购买 nike

我进行了搜索,但找不到像这样的正则表达式。这个正则表达式必须捕获每个 url,如“http://domain.com/blabla”、“domain.com/blabla”、“domain.com”、“www.domain.com”...与 Twitter 相同。但它不应该捕获特殊的域。 “togl.me”、“user.togl.me”...不应捕获带有子域的主域。

我对我的英语感到抱歉。谢谢,

最佳答案

以下模式符合您的条件:

/(^|\s)((https?:\/\/)?(?!([\w-]+\.)*?togl\.me(\/|\s|$))[\w-]+(\.[\w-]+)+\.?(:\d+)?(\/\S*)?)/gi

它基于您提供的模式。使用否定前瞻排除 togl.me:

(?!([\w-]+\.)*?togl\.me(\/|\s|$))           "not followed by the (xxx.)*togl.me"

关于JavaScript Url Catcher 像 Twitter (Regexp),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9350073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com