numpy.core.defchararray.rfind¶
-
numpy.core.defchararray.
rfind
(a, sub, start=0, end=None)[source]¶ For each element in a, return the highest index in the string where substring sub is found, such that sub is contained within [start, end].
逐个调用str.rfind。
参数: a:数组类似str或unicode
sub:str或unicode
start,end:int,可选
可选参数start和end被解释为切片表示法。
返回: out:ndarray
输出数组的整数。失败时返回-1。
也可以看看