BillBie

导航

获取网页中的charset

m = re.compile('<meta .*(http-equiv="?Content-Type"?.*)?charset="?([a-zA-Z0-9_-]+)"?', re.I).search(response_text)
if m and m.lastindex == 2:
    charset = m.group(2).lower()

 

posted on 2020-08-19 19:32  BillBie  阅读(0)  评论(0编辑  收藏  举报