gpt4 book ai didi

regex - 重写正则表达式而不取反

转载 作者:IT王子 更新时间:2023-10-29 01:33:31 32 4
gpt4 key购买 nike

我写了这个正则表达式来帮助我从一些文本文件中提取一些链接:

https?:\/\/(?:.(?!https?:\/\/))+$

因为我正在使用 golang/regexp 库,所以我无法使用它,因为我的否定 (?!..

我想用它做的是选择从最后一次出现的 http/https 到最后的所有文本。

sometextsometexhttp://websites.com/path/subpath/#query1sometexthttp://websites.com/path/subpath/#query2

=> 输出:http://websites.com/path/subpath/#query2

谁能帮我解决问题,我花了几个小时尝试不同的方法来重现相同的结果,但没有成功。

最佳答案

试试这个正则表达式:

https?:[^:]*$

Regex live here.

关于regex - 重写正则表达式而不取反,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31832852/

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