numpy.char.index#
- char.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])