當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark Series.str.rfind用法及代碼示例


本文簡要介紹 pyspark.pandas.Series.str.rfind 的用法。

用法:

str.rfind(sub: str, start: int = 0, end: Optional[int] = None) → ps.Series

返回 Series 中每個字符串的最高索引,其中子字符串完全包含在 [start:end] 之間。

失敗時返回-1。相當於標準 str.rfind()

參數

substr

正在搜索的子字符串。

startint

左邊索引。

endint

右邊索引。

返回

int係列

一係列最高匹配 index 。

例子

>>> s = ps.Series(['apple', 'oranges', 'bananas'])
>>> s.str.rfind('a')
0    0
1    2
2    5
dtype: int64
>>> s.str.rfind('a', start=2)
0   -1
1    2
2    5
dtype: int64
>>> s.str.rfind('a', end=1)
0    0
1   -1
2   -1
dtype: int64
>>> s.str.rfind('a', start=2, end=2)
0   -1
1   -1
2   -1
dtype: int64

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.str.rfind。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。