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])