python urllib2 中文乱码解决

Posted Hslim

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python urllib2 中文乱码解决相关的知识,希望对你有一定的参考价值。

 

import urllib2
import re
url = ‘http://192.168.80.128/‘
charset_reg =r‘<meta.*charset="?([\w|-]*)"?\s*/?>‘
patten = re.compile(charset_reg)
req = urllib2.Request(url)
html = urllib2.urlopen(req).read()
code = patten.search(html).group(1)
print code
print html.decode(code)

  

 

正则表达式:  <meta.*charset="?([\w|-]*)"?\s*/?>

 

亲测能匹配很多网页!做个笔记在这

=====================================================

seo:

 python urllib2 中文乱码解决

python urllib2 中文乱码解决

python urllib2 中文乱码解决

python urllib2 中文乱码解决

网页编码正则表达式

网页编码正则表达式

网页编码正则表达式

 

以上是关于python urllib2 中文乱码解决的主要内容,如果未能解决你的问题,请参考以下文章

Python 抓取网页gb2312乱码问题

python爬虫抓下来的网页,中间的中文乱码怎么解决

python输出到文件乱码如何解决

解决python画图标签中文乱码

如何解决Python中文问题

python爬虫中文乱码解决方法