我可以在Python中翻译PHP的preg_match_all('/(https?:\/\/\S+)/', $text, $links)
吗? (即)我需要将纯文本参数中的链接存在于数组中。
答案 0 :(得分:13)
这样做:
import re
links = re.findall('(https?://\S+)', text)
如果你打算多次使用它,你可以考虑这样做:
import re
link_re = re.compile('(https?://\S+)')
links = link_re.findall(text)