numpy.char.find#
- char.find(a, sub, start=0, end=None)[源代码]#
对于每个元素,返回字符串中子字符串
sub
找到的最低索引,使得sub
包含在范围 [start
,end
) 中.- 参数:
- a : array_like, 具有
StringDType
、bytes_
或str_
dtypearray_like, 具有 - sub : array_like, 具有 np.bytes_ 或 np.str_ dtypearray_like, 具有
要搜索的子字符串.
- start, end类似数组的对象,具有任意整数数据类型
要查找的范围,解释为切片表示法.
- a : array_like, 具有
- 返回:
- yndarray
输出整数数组
参见
示例
>>> import numpy as np >>> a = np.array(["NumPy is a Python library"]) >>> np.strings.find(a, "Python") array([11])