On this page
numpy.char.rsplit
numpy.char.rsplit(a, sep=None, maxsplit=None)-
For each element in
a, return a list of the words in the string, usingsepas the delimiter string.Calls
str.rsplitelement-wise.Except for splitting from the right,
rsplitbehaves likesplit.Parameters: -
a : array_like of str or unicode -
sep : str or unicode, optional -
If
sepis not specified orNone, any whitespace string is a separator. -
maxsplit : int, optional -
If
maxsplitis given, at mostmaxsplitsplits are done, the rightmost ones.
Returns: -
out : ndarray -
Array of list objects
See also
-
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.char.rsplit.html