bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / strings / _rsplit
_ArrayFunctionDispatcher
numpy.strings:_rsplit
source: build-install/usr/lib/python3.14/site-packages/numpy/_core/strings.py :1444
Signature
def _rsplit ( a , sep = None , maxsplit = None ) Summary
For each element in a, return a list of the words in the string, using sep as the delimiter string.
Extended Summary
Calls str.rsplit element-wise.
Except for splitting from the right, rsplit behaves like split.
Parameters
a: array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtypesep: str or unicode, optionalIf
sepis not specified or None, any whitespace string is a separator.maxsplit: int, optionalIf
maxsplitis given, at mostmaxsplitsplits are done, the rightmost ones.
Returns
out: ndarrayArray of list objects
Examples
import numpy as np a = np.array(['aAaAaA', 'abBABba'])✓
See also
- split
- str.rsplit
Aliases
-
numpy.char.rsplit