numpy.core.defchararray.find

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.core.defchararray.find.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.core.defchararray.find(a, sub, start=0, end=None)[source]

对于每个元素,返回字符串中找到子字符串sub的最低索引。

逐个调用str.find

For each element, return the lowest index in the string where substring sub is found, such that sub is contained in the range [start, end].

参数:

a:array_like of str或unicode

sub:str或unicode

start,end:int,可选

可选参数startend被解释为切片表示法。

返回:

out:ndarray或int

输出数组的整数。如果未找到sub,则返回-1。

也可以看看

str.find