Unescape /解码python中的字符串

时间:2014-03-04 11:14:30

标签: python escaping decode

我正在制作一个返回JSON的AJAX请求,但是JSON是一个转义的转义HTML,有什么方法我可以很好地使用python来解决它,(我不想使用搜索和替换)

我试过了

 >>> print this.decode('string_escape')

几乎可以工作,但它没有像“\ /”

这样的东西
\n\n\n\n    <div id=\"artikel_127997\" class=\"itemPrev product-box-wrapper 
la3r1 la4r1    
la5r1 la3c1 la4c1 la5c1\" itemscope itemtype=\"http:\/\/schema.org\/Product\">\n
                           \n<div class=\"product-box\"><div class=\"title-and-
 description\"><h3 class=\"title\"><a href=\"\/en\/buy\/bianchi-kuma-26.5-127997\/wg_id-
6666\" title=\"Bianchi Kuma 26.5\" itemprop=\"url\"><span class=\"manufacturer 
manufacturer-black\" itemprop=\"brand\">Bianchi<\/span><span>Kuma 26.5<\/span><\/a>
<\/h3>
<meta itemprop=\"name\" content=\"Bianchi Kuma 26.5\"><div class=\"description\" 
itemprop=\"description\">      

这个的输出是

<div class="product-box"><div class="title-and-description"><h3 class="title"><a
href="\/en\/buy\/bianchi-kuma-26.5-127997\/wg_id-6666" title="Bianchi Kuma 26.5" 
itemprop="url"><span class="manufacturer manufacturer-black" 
 itemprop="brand">Bianchi<\/span><span>Kuma 26.5<\/span><\/a><\/h3><meta itemprop="name" 
content="Bianchi Kuma 26.5"><div class="description" itemprop="description">  

我可以搜索并替换所有“\ /”但是没有更好的方法吗?

0 个答案:

没有答案