pyspark.pandas.Series.str.find

str。 找到 ( :str,開始:int=0,結束:可選(int]=沒有一個 )→pyspark.pandas.series.Series

返回最低指標係列中的每個字符串的子串之間的完全包含開始:結束。

失敗返回1。相當於標準str.find ()

參數
str

子字符串搜索。

開始 int

左邊緣指數。

結束 int

右邊緣指數。

返回
一係列的int

一係列的匹配指數最低。

例子

> > >年代=ps係列([“蘋果”,“橘子”,“香蕉”])
> > >年代str找到(“一個”)0 01 22 1dtype: int64
> > >年代str找到(“一個”,開始=2)0 11 22 3dtype: int64
> > >年代str找到(“一個”,結束=1)0 012 1dtype: int64
> > >年代str找到(“一個”,開始=2,結束=2)0 112 1dtype: int64