正则表达式 - python re.sub替换不成功
黄舟
黄舟 2017-04-18 10:12:11
0
2
500

我在学习爬虫的时候想把里面的标签去掉,但是使用re.sub不成功。代码如下:

#!usr/bin/env python3
#coding:utf-8

from urllib.request import urlopen
from bs4 import BeautifulSoup
import re

html = urlopen("http://www.jianshu.com")
bsObj = BeautifulSoup(html,"lxml")
txt = bsObj.findAll("p",{"class":re.compile("abstract")})
for word in txt:
        if '<p class="abstract">' in word:
                newword = re.sub(r'<p class="abstract">','\n',word)
                print(newword)
        else:
                print(word)

请问这是是什么问题,谢谢!

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(2)
黄舟
In [19]: type(word)
Out[19]: bs4.element.Tag

I found the reason, word is not a string.

黄舟

The string object p does not contain the "sub" method:

newword = p.sub('\n', word) # -> re.sub(.....)

Write a small piece of code for the subject’s reference:

import re
word = '<p class="abstract">AAAA<p class="abstract">bbb'
p = '<p class="abstract">'
newword = re.sub(p, '\n', word)

'''
Result:
In [21]: newword
Out[21]: '\nAAAA\nbbb'

In [22]: print newword

AAAA
bbb

In [23]:
'''
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!