pandas.Series.str.rindex#

Series.str.rindex(sub, start=0, end=None)[源代码]#

返回 Series/Index 中每个字符串中的最高索引。

每个返回的索引对应于子字符串完全包含在 [start:end] 之间的位置。这与 str.rfind 相同,除了当找不到子字符串时,它不会返回 -1,而是引发 ValueError。等同于标准的 str.rindex

参数:
substr

正在搜索的子字符串。

开始int

左边缘索引。

结束int

右侧边缘索引。

返回:
对象的系列或索引

返回输入中每个字符串中最高索引的 Series 或 Index。

参见

index

返回每个字符串中的最低索引。

例子

对于 Series.str.index:

>>> ser = pd.Series(["horse", "eagle", "donkey"])
>>> ser.str.index("e")
0   4
1   0
2   4
dtype: int64

对于 Series.str.rindex:

>>> ser = pd.Series(["Deer", "eagle", "Sheep"])
>>> ser.str.rindex("e")
0   2
1   4
2   3
dtype: int64