bundles / numpy 2.4.3 / numpy / strings / strip
function
numpy.strings:strip
source: /numpy/_core/strings.py :1033
Signature
def strip ( a , chars = None ) Summary
For each element in a, return a copy with the leading and trailing characters removed.
Parameters
a: array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtypechars: scalar with the same dtype as ``a``, optionalThe
charsargument is a string specifying the set of characters to be removed. IfNone, thecharsargument defaults to removing whitespace. Thecharsargument is not a prefix or suffix; rather, all combinations of its values are stripped.
Returns
out: ndarrayOutput array of
StringDType,bytes_orstr_dtype, depending on input types
Examples
import numpy as np c = np.array(['aAaAaA', ' aA ', 'abBABba']) c✓
np.strings.strip(c) np.strings.strip(c, 'a')✗
np.strings.strip(c, 'A')
✓See also
- str.strip
Aliases
-
numpy.char.strip