<dd class="gray6"> <span class="gray6"> 中文 <span class="padl27"></span> 中文 </span> 中文内容 #需要抓取的内容 </dd> 用BeautifulSoup html.parser解析的网页,现在用re模块想抓取**第7行**的中文内容,放在一个组里面(.*?)。正则老是匹配不上,用换行符也匹配不上,不知道怎么写了。。。
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
既然你都用bs4解析了,为什么不用它提取哪?bs4内有一个stripped_string的函数正好满足你的需要。
import re pattern = re.compile(r'</span>.*?</span>(.*?)</dd>', re.S) str = '''<dd class="gray6"> <span class="gray6"> 中文 <span class="padl27"></span> 中文 </span> 中文内容 #需要抓取的内容 </dd>''' print(pattern.search(str).group(1)) ===> 中文内容 #需要抓取的内容
const re = /^\<\/span\>(.*)\<\/dd\>$/
这样可以不?
既然你都用bs4解析了,为什么不用它提取哪?
bs4内有一个stripped_string的函数正好满足你的需要。
这样可以不?