当前位置:   article > 正文

Python re 正则:抓取网页上电驴/磁力/迅雷链接_python 正册表达式提取磁链接

python 正册表达式提取磁链接

利用re的不分组(?:pattern)和N选1(?: (?:pattern1)|(?:pattern2)|(?:pattern3)),一次性筛选出符合三种格式的链接

res = re.findall(r'"((?:(?:ed2k)|(?:magnet)|(?:thunder)):.+?)"',content)    	# 批量链接["..."]
res = re.findall(r'((?:(?:ed2k)|(?:magnet)|(?:thunder)):.+?)[\s]',content)    	# 批量非链接[ed2k  mag1 \n mag2]
res = re.findall(r'((?:(?:ed2k)|(?:magnet)|(?:thunder)):.+)',content)    		# 单条非链接
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/177107
推荐阅读
相关标签
  

闽ICP备14008679号