NumPy

Previous topic

numpy.char.rfind

Next topic

numpy.char.startswith

This is documentation for an old release of NumPy (version 1.19). Read this page in the documentation of the latest stable release (version 2.2).

numpy.char.rindex

numpy.char.rindex(a, sub, start=0, end=None)

Like rfind, but raises ValueError when the substring sub is not found.

Calls str.rindex element-wise.

Parameters
aarray-like of str or unicode
substr or unicode
start, endint, optional
Returns
outndarray

Output array of ints.

See also

rfind, str.rindex