码迷,mamicode.com
首页 > 编程语言 > 详细

Python中escape和unescape

时间:2018-01-28 17:26:02      阅读:551      评论:0      收藏:0      [点我收藏+]

标签:log   处理   字符   txt   pytho   escape   cap   port   amp   

Python处理HTML转义字符

在抓网页数据经常遇到例如>或者 这种HTML转义符,抓到字符串里很是烦人。

  比方说一个从网页中抓到的字符串

  p =‘<abc>‘

  用Python可以这样处理:

  

import html
p = <abc>
txt= html.unescape(p)
print (txt)

 

  #这样就得到了txt= ‘<abc>‘

  如果还想转回去,可以这样:
  

import cgi
q = cgi.escape(html)
print(q)

  

       #这样又回到了 html = ‘&lt;abc&gt‘

Python中escape和unescape

标签:log   处理   字符   txt   pytho   escape   cap   port   amp   

原文地址:https://www.cnblogs.com/logo-88/p/8371583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!