pandas.Series.str.index¶
Return lowest indexes in each strings where the substring is
fully contained between [start:end]. This is the same as
str.find
except instead of returning -1, it raises a ValueError
when the substring is not found. Equivalent to standard str.index
.
- param sub
- str
Substring being searched
- param start
- int
Left edge index
- param end
- int
Right edge index
- return
found : Series/Index of objects
Warning
This feature is currently unsupported by Intel Scalable Dataframe Compiler