我有两个数字 (NUM1; NUM2) 我试图跨具有相同格式的网页提取:
<div style="margin-left:0.5em;">
<div style="margin-bottom:0.5em;">
NUM1 and NUM2 are always followed by the same text across webpages
</div>
我认为正则表达式可能是这些特定领域的方法。这是我的尝试(从各种来源借来的):
def nums(self):
nums_regex = re.compile(r'\d+ and \d+ are always followed by the same text across webpages')
nums_match = nums_regex.search(self)
nums_text = nums_match.group(0)
digits = [int(s) for s in re.findall(r'\d+', nums_text)]
return digits
就其本身而言,在函数之外,此代码在指定文本的实际来源时起作用(例如,nums_regex.search(text)
)。但是,我正在修改另一个人的代码,而我自己以前从未真正使用过类或函数。这是他们的代码示例:
@property
def title(self):
tag = self.soup.find('span', class_='summary')
title = unicode(tag.string)
return title.strip()
正如您可能已经猜到的那样,我的代码不起作用。我得到错误:
nums_match = nums_regex.search(self)
TypeError: expected string or buffer
看起来我没有正确输入原始文本,但我该如何解决呢?