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