1

我正在使用包含第 1 项、第 1a 项和第 2 项的 html 文件。有没有办法向后搜索并找到第 2 项之前的第 1a 项?

例子:

text= """ this is an example item 1a thanks for helping item 2 blah blah item 1a""" 
4

2 回答 2

5

使用 str.rfind() 方法反向搜索字符串的出现。这个问题还应该让您对如何进行一些了解

于 2013-07-30T06:09:34.577 回答
0

是的......使用'r'功能:

text= """ this is an example item 1a thanks for helping item 2 blah blah item 1a"""
text.rfind("1a")
于 2013-07-30T06:13:37.763 回答