本文簡要介紹
pyspark.pandas.Series.str.index
的用法。用法:
str.index(sub: str, start: int = 0, end: Optional[int] = None) → ps.Series
返回每個字符串中子字符串完全包含在 [start:end] 之間的最低索引。
這與
str.find()
相同,隻不過它不是返回 -1,而是在未找到子字符串時引發 ValueError。相當於標準str.index()
。- sub:str
正在搜索的子字符串。
- start:int
左邊索引。
- end:int
右邊索引。
- int係列
一係列最低匹配索引。
參數:
返回:
例子:
>>> s = ps.Series(['apple', 'oranges', 'bananas'])
>>> s.str.index('a') 0 0 1 2 2 1 dtype: int64
以下表達式引發異常:
>>> s.str.index('a', start=2)
相關用法
- Python pyspark Series.str.isnumeric用法及代碼示例
- Python pyspark Series.str.isdecimal用法及代碼示例
- Python pyspark Series.str.istitle用法及代碼示例
- Python pyspark Series.str.isupper用法及代碼示例
- Python pyspark Series.str.isspace用法及代碼示例
- Python pyspark Series.str.isalnum用法及代碼示例
- Python pyspark Series.str.isdigit用法及代碼示例
- Python pyspark Series.str.isalpha用法及代碼示例
- Python pyspark Series.str.islower用法及代碼示例
- Python pyspark Series.str.join用法及代碼示例
- Python pyspark Series.str.startswith用法及代碼示例
- Python pyspark Series.str.slice_replace用法及代碼示例
- Python pyspark Series.str.rjust用法及代碼示例
- Python pyspark Series.str.lstrip用法及代碼示例
- Python pyspark Series.str.len用法及代碼示例
- Python pyspark Series.str.slice用法及代碼示例
- Python pyspark Series.str.endswith用法及代碼示例
- Python pyspark Series.str.swapcase用法及代碼示例
- Python pyspark Series.str.rstrip用法及代碼示例
- Python pyspark Series.str.match用法及代碼示例
- Python pyspark Series.str.rindex用法及代碼示例
- Python pyspark Series.str.rsplit用法及代碼示例
- Python pyspark Series.str.strip用法及代碼示例
- Python pyspark Series.str.ljust用法及代碼示例
- Python pyspark Series.str.count用法及代碼示例
注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.str.index。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。