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
个出现。
- a类数组,具有
- 返回值:
- outndarray
输出数组为
StringDType
、bytes_
或str_
数据类型,具体取决于输入类型
另请参阅
示例
>>> 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')