numpy.char.rindex#
- char.rindex(a, sub, start=0, end=None)[源代码]#
类似于
rfind
,但在找不到子字符串 sub 时会引发ValueError
异常。- 参数:
- a类似数组,具有 np.bytes_ 或 np.str_ dtype
- sub类似数组,具有 np.bytes_ 或 np.str_ dtype
- start, end类似数组,具有任何整数 dtype,可选
- 返回:
- outndarray
整数输出数组。
另请参阅
示例
>>> a = np.array(["Computer Science"]) >>> np.strings.rindex(a, "Science", start=0, end=None) array([9])