python----正则表达式提取域名

import re
s2 = """http://www.interoem.com/messageinfo.asp?id=35
      http://3995503.com/class/class09/news_show.asp?id=14
        http://lib.wzmc.edu.cn/news/onews.asp?id=769
        http://www.zy-ls.com/alfx.asp?newsid=377&id=6
        http://www.fincm.com/newslist.asp?id=415"""
s = re.findall(r"http://.*?\.com|http://.*?\.cn", s2)
print(s)

结果:
在这里插入图片描述

你可能感兴趣的:(python----正则表达式提取域名)