gpt4 book ai didi

php - 从众多 URL 中提取包含/find/的 URL?

转载 作者:行者123 更新时间:2023-12-04 05:36:46 27 4
gpt4 key购买 nike

我真的是 RegEx 的主要新手,可以提供一些帮助。

我有一个包含大量 URL 和其他文本的长字符串,其中一个 URL 包含/find/。即:

1. http://www.example.com/not/index.html
2. http://www.example.com/sat/index.html
3. http://www.example.com/find/index.html
4. http://www.example.com/rat/mine.html
5. http://www.example.com/mat/find.html

我将使用什么样的 RegEx 来返回该列表中第 3 号的 URL,但不返回第 5 号的 URL?我想基本上我正在寻找的是一种返回包含一组特定字母和/的整个单词的方法。

TIA

最佳答案

我假设你想要 preg_match("%/find/%",$input);或类似。

编辑:要获得完整的行,请使用:

preg_match("%^.*?/find/.*$%m",$input);

关于php - 从众多 URL 中提取包含/find/的 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11837009/

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