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