python怎么用正则怎么获取标题
大家讲道理
大家讲道理 2016-11-12 11:06:23
0
3
847
<h3 class="title h1 js-title"> 
<a href="/wenda/2084" target="2084" data-main-tab="/wenda/2084" data-new-tab="php.cn/python-tutorials-351098.html"> $300 Off Phantom 3 Standard </a> 
</h3>
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
阿神

反向思维, 从标签中找到文本很麻烦, 所以我们干脆就把别的标签都干掉

import re
html = u'<h3 class="title h1 js-title"> <a href="/wenda/2084" target="2084" data-main-tab="/wenda/2084" data-new-tab="php.cn/python-tutorials-351098.html"> $300 Off Phantom 3 Standard </a> </h3>'title = re.sub(ur'<.+?>', '', html).strip()print title # $300 Off Phantom 3 Standard


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!