原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.core.defchararray.replace.html
校对:(虚位以待)
numpy.core.defchararray.
replace
(a, old, new, count=None)[source]对于a中的每个元素,返回一个字符串的副本,其中所有出现的子字符串old被new
替换。
逐个调用str.replace。
参数: | a:数组类似str或unicode old,new:str或unicode count:int,可选 |
---|---|
返回: | out:ndarray
|
也可以看看