{ } Raw JSON

bundles / numpy 2.4.4 / numpy / strings / _rsplit

_ArrayFunctionDispatcher

numpy.strings:_rsplit

source: /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