本文簡要介紹 python 語言中 numpy.char.strip
的用法。
用法:
char.strip(a, chars=None)
對於 a 中的每個元素,返回一個刪除了前導和尾隨字符的副本。
逐元素調用
str.strip
。- a: str 或 unicode 的類數組
- chars: str 或 unicode,可選
chars 參數是一個字符串,指定要刪除的字符集。如果省略或無,chars 參數默認刪除空格。 chars 參數不是前綴或後綴;相反,它的值的所有組合都被剝離。
- out: ndarray
str 或 unicode 的輸出數組,取決於輸入類型
參數:
返回:
例子:
>>> c = np.array(['aAaAaA', ' aA ', 'abBABba']) >>> c array(['aAaAaA', ' aA ', 'abBABba'], dtype='<U7') >>> np.char.strip(c) array(['aAaAaA', 'aA', 'abBABba'], dtype='<U7') >>> np.char.strip(c, 'a') # 'a' unstripped from c[1] because whitespace leads array(['AaAaA', ' aA ', 'bBABb'], dtype='<U7') >>> np.char.strip(c, 'A') # 'A' unstripped from c[1] because (unprinted) ws trails array(['aAaAa', ' aA ', 'abBABba'], dtype='<U7')
相關用法
- Python numpy char.swapcase用法及代碼示例
- Python numpy char.upper用法及代碼示例
- Python numpy char.count用法及代碼示例
- Python numpy char.chararray用法及代碼示例
- Python numpy char.rstrip用法及代碼示例
- Python numpy char.endswith用法及代碼示例
- Python numpy char.decode用法及代碼示例
- Python numpy char.compare_chararrays用法及代碼示例
- Python numpy char.lstrip用法及代碼示例
- Python numpy char.lower用法及代碼示例
- Python numpy char.title用法及代碼示例
- Python numpy char.capitalize用法及代碼示例
- Python numpy char.chararray.tostring用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy chararray.setflags用法及代碼示例
- Python numpy chararray.flat用法及代碼示例
- Python numpy chararray.strides用法及代碼示例
- Python numpy chararray.view用法及代碼示例
- Python numpy chararray.imag用法及代碼示例
- Python numpy chararray.base用法及代碼示例
- Python numpy chararray.flatten用法及代碼示例
- Python numpy chararray.copy用法及代碼示例
- Python numpy chararray.resize用法及代碼示例
- Python numpy chararray.sort用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.char.strip。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。