gpt4 book ai didi

javascript - Regex 正面先行得到第一次出现

转载 作者:行者123 更新时间:2023-11-30 11:38:39 25 4
gpt4 key购买 nike

我有这样的字符串,我想在 .html 和第一个斜杠之间捕获字符

http://example.org/some-path/some-title-in-1978.html

这部分some-title-in-1978,为此我想出了这个正则表达式:

/\/.+?(?=\.html)/ 结果不是我想要的,是这样的:

//domain.org/some-path/some-title-in-1978

最佳答案

使用以下正则表达式模式:

[^/]+(?=\.html)

https://regex101.com/r/wep2Im/1

[^/]+ - 匹配 .html 后的所有字符,正斜杠

除外

关于javascript - Regex 正面先行得到第一次出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43449808/

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