numpy.char.rindex#
- char.rindex(a, sub, start=0, end=None)[源代码]#
类似于
rfind
,但在子字符串 sub 未找到时会引发ValueError
.- 参数:
- a : 类似数组的对象,具有 np.bytes_ 或 np.str_ 数据类型类似数组,具有
- sub : 类似数组,具有 np.bytes_ 或 np.str_ 数据类型类似数组,具有
- start, end类似数组,具有任意整数数据类型,可选
- 返回:
- outndarray
输出整数数组.
参见
示例
>>> a = np.array(["Computer Science"]) >>> np.strings.rindex(a, "Science", start=0, end=None) array([9])