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


Python cudf.core.column.string.StringMethods.index用法及代碼示例


用法:

StringMethods.index(sub: str, start: int = 0, end: int = None) → SeriesOrIndex

返回每個字符串中子字符串完全包含在 [start:end] 之間的最低索引。這與 str.find 相同,隻是它不是返回 -1,而是在未找到子字符串時引發 ValueError。

參數

substr

正在搜索的子字符串。

startint

左邊索引。

endint

右邊索引。

返回

對象的係列或索引

例子

>>> import cudf
>>> s = cudf.Series(['abc', 'a','b' ,'ddb'])
>>> s.str.index('b')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: substring not found

也可以使用startend 等參數。

>>> s = cudf.Series(['abc', 'abb','ab' ,'ddb'])
>>> s.str.index('b', start=1, end=5)
0    1
1    1
2    1
3    2
dtype: int32

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.index。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。