0
我正在處理html文件。我想提取在第一個項目 2之前和項目 1a之前出現的文本(感謝幫助部分)。首先,我刪除第二項後到來的文本 2.在2個關鍵字之間打印文本
text= """"""<this is an example this is Item 2. A href="#106">Item 1a. thanks for helping <B>Item 2. Properties</B> this is an example this is Item 2.stachoverflow"""
>>> a=re.search ('(?<=<B>)Item 2\.',text)
>>> b = a.span()
>>> newText= text[:b[1]]
>>> c=newText.rfind("1a")
>>> (newText[c[1]:])
TypeError: 'int' object is not subscriptable
我怎麼能打印的排在C之後的文本?