gpt4 book ai didi

php - 将 PHP 的 preg_match_all 翻译成 Python

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

我可以用 Python 翻译 PHP 的 preg_match_all('/(https?:\/\/\S+)/', $text, $links) 吗? (ie) 我需要获取数组中纯文本参数中存在的链接。

最佳答案

这样做就可以了:

import re
links = re.findall('(https?://\S+)', text)

如果你打算多次使用它,你可以考虑这样做:

import re
link_re = re.compile('(https?://\S+)')
links = link_re.findall(text)

关于php - 将 PHP 的 preg_match_all 翻译成 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3865896/

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