numpy.strings.index#
- strings.index(a, sub, start=0, end=None)[source]#
类似于
find
,但如果子字符串未找到,则引发ValueError
。- 参数:
- a类似数组,具有
StringDType
、bytes_
或str_
数据类型 - sub类似数组,具有
StringDType
、bytes_
或str_
数据类型 - start, end类似数组,具有任何整数数据类型,可选
- a类似数组,具有
- 返回值:
- outndarray
整数输出数组。
示例
>>> import numpy as np >>> a = np.array(["Computer Science"]) >>> np.strings.index(a, "Science", start=0, end=None) array([9])