This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

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_`` dtype
sep : str or unicode, optional

If sep is not specified or None, any whitespace string is a separator.

maxsplit : int, optional

If maxsplit is given, at most maxsplit splits are done, the rightmost ones.

Returns

out : ndarray

Array of list objects

Examples

import numpy as np
a = np.array(['aAaAaA', 'abBABba'])

See also

split
str.rsplit

Aliases

  • numpy.char.rsplit