numpy.strings.index#
- strings.index(a, sub, start=0, end=None)[源代码]#
类似于
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])