例如:
字符串中最后出现的“casa”的索引位置:
txt = "Mi casa, su casa."x = txt.rfind("casa")print(x)
1、定义和用法
rfind()
方法查找指定字符串的最后一次出现的位置(从右向左查找)。
如果找不到该字符串,rfind()
方法将返回-1。
rfind()
方法与rindex()
方法几乎相同。请参见下面的示例。
2、调用语法
string.rfind(value, start, end)
3、参数说明
参数 | 描述 |
value | 必需的参数,要搜索的字符串 |
start | 可选的。从哪里开始搜索。默认为0 |
end | 可选的。在哪里结束搜索。默认值是字符串的末尾 |
4、使用示例
例如:
字符串中最后出现的“e”位置索引:
txt = "Hello, welcome to my world."x = txt.rfind("e")print(x)
例如:
仅在位置5和位置10之间搜索时,字符串中最后出现的“e”位置索引:
txt = "Hello, welcome to my world."x = txt.rfind("e", 5, 10)print(x)
例如:
如果找不到该字符串,则rfind()方法返回-1,但rindex()方法将引发异常:
txt = "Hello, welcome to my world."print(txt.rfind("q"))print(txt.rindex("q"))