gpt4 book ai didi

php - 对应于 Python 中 PHP 的 preg_match

转载 作者:太空狗 更新时间:2023-10-29 17:29:51 25 4
gpt4 key购买 nike

我打算将我的一个爬虫迁移到 Python。我很乐意使用 preg_matchpreg_match_all在 PHP 中。我没有在 Python 中找到类似于 preg_match 的合适函数.有人可以帮我这样做吗?

比如我想获取<a class="title"之间的内容和 </a> ,我在 PHP 中使用以下函数:

preg_match_all('/a class="title"(.*?)<\/a>/si',$input,$output);

而在 Python 中我无法找出类似的函数。

最佳答案

你正在寻找 python 的 re module .

看看re.findallre.search .

正如您所提到的,您正在尝试使用 html 解析器 来解析 html。 python 中有几个选项可用,例如 lxmlBeautifulSoup .

看看这个Why you should not parse html with regex

关于php - 对应于 Python 中 PHP 的 preg_match,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9061844/

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