问题描述
- python re 字符串匹配问题
-
#coding=utf-8import requests
import rehtml = requests.get('http://tieba.baidu.com/f?ie=utf-8&kw=python&fr=search')
html = requests.get('http://jp.tingroom.com/yuedu/yd300p/')
html.encoding = 'utf-8'
print html.text
lastreponder = re.findall('最后回复人:(.*?)">',html.text,re.S)
for each in lastreponder:
print each代码如上
网页部分源代码如下:title="最后回复人:黄哥python培训">
即:
'最后回复人:(.*?)">'与"最后回复人:黄哥python培训">匹配不起来,
试过加在"前,也是不行,求助下,谢谢!
解决方案
解决方案二:
http://zhidao.baidu.com/question/1046896060237813819.html
解决方案三:
把?去掉,?用在*后面是非贪心匹配。(.*?)整个意思是什么也不匹配
时间: 2024-11-16 14:36:03