我正在一个 html 格式的站点中搜索具有以下格式的字符串(“s”):
<td class="number">$0.48</td>
我正在尝试使用正则表达式返回“$ 0.48”。它一直工作到今天,我不知道发生了什么变化,但这是我的代码片段:
def scrubdividata(ticker):
sleep(1.0) # Time in seconds.
f = urllib2.urlopen('the url')
lines = f.readlines()
for i in range(0,len(lines)):
line = lines[i]
if "Annual Dividend:" in line:
print 'for ticker %s, annual dividend is in line'%(ticker)
s = str(lines[i+1])
print s
start = '>$'
end = '</td>'
AnnualDiv = re.search('%s(.*)%s' % (start, end), s).group(1)
结果如下:
for ticker A, annual dividend is in line
<td class="number">$0.48</td>
Traceback (most recent call last):
File "test.py", line 115, in <module>
scrubdividata(ticker)
File "test.py", line 34, in scrubdividata
LastDiv = re.search('%s(.*)%s' % (start, end), s).group(1)
AttributeError: 'NoneType' object has no attribute 'group'
我正在使用 python 2.5(我相信)。我从来没有听说过在 html 中使用正则表达式,但我需要快速利用我有限的知识来尽快完成工作,而正则表达式是我所知道的唯一方法。现在,我是在承受后果还是有其他问题导致了这种情况?任何见解都会很棒!
谢谢,乙