numpy.strings.replace#

strings.replace(a, old, new, count=-1)[source]#

对于 a 中的每个元素,返回字符串的副本,其中子字符串 old 的所有出现都被 new 替换。

参数:
a类数组,具有 bytes_str_ 数据类型
old, new类数组,具有 bytes_str_ 数据类型
count类数组,具有 int_ 数据类型

如果给出了可选参数 count,则只替换前 count 个出现。

返回值:
outndarray

输出数组为 StringDTypebytes_str_ 数据类型,具体取决于输入类型

另请参阅

str.replace

示例

>>> import numpy as np
>>> a = np.array(["That is a mango", "Monkeys eat mangos"])
>>> np.strings.replace(a, 'mango', 'banana')
array(['That is a banana', 'Monkeys eat bananas'], dtype='<U19')
>>> a = np.array(["The dish is fresh", "This is it"])
>>> np.strings.replace(a, 'is', 'was')
array(['The dwash was fresh', 'Thwas was it'], dtype='<U19')