On this page
numpy.char.rstrip
numpy.char.rstrip(a, chars=None)-
For each element in
a, return a copy with the trailing characters removed.Calls
str.rstripelement-wise.Parameters: -
a : array-like of str or unicode -
chars : str or unicode, optional -
The
charsargument is a string specifying the set of characters to be removed. If omitted or None, thecharsargument defaults to removing whitespace. Thecharsargument is not a suffix; rather, all combinations of its values are stripped.
Returns: -
out : ndarray -
Output array of str or unicode, depending on input type
See also
Examples
>>> c = np.array(['aAaAaA', 'abBABba'], dtype='S7'); c array(['aAaAaA', 'abBABba'], dtype='|S7') >>> np.char.rstrip(c, b'a') array(['aAaAaA', 'abBABb'], dtype='|S7') >>> np.char.rstrip(c, b'A') array(['aAaAa', 'abBABba'], dtype='|S7') -
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.char.rstrip.html