我正在使用包含第 1 项、第 1a 项和第 2 项的 html 文件。有没有办法向后搜索并找到第 2 项之前的第 1a 项?
例子:
text= """ this is an example item 1a thanks for helping item 2 blah blah item 1a"""
使用 str.rfind() 方法反向搜索字符串的出现。这个问题还应该让您对如何进行一些了解
是的......使用'r'功能:
text= """ this is an example item 1a thanks for helping item 2 blah blah item 1a"""
text.rfind("1a")