当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy string replace()用法及代码示例


在numpy.core.defchararray.replace()函数中,arr中的每个元素都返回字符串的副本,其中所有出现的子字符串old都被new替换。

用法: numpy.core.defchararray.replace(arr, old, new, count = None)

参数:

地址:[str的array-like]给定字符串array-like。

old:[str或unicode]您要替换的旧子字符串。



new:[str或unicode]新的子字符串,它将替换旧的子字符串。

count:[int,可选]如果给出了可选参数count,则仅替换第一个出现的计数。

Return:[ndarray]返回str的输出数组。

代码1:

Python3

# Python program explaining  
# numpy.char.replace() function  
  
# importing numpy as geek   
import numpy as geek  
  
gfg = geek.char.replace('GFG | a computer science portal for geeks', 'GFG', 'GeeksforGeeks') 
    
print (gfg)

输出:

GeeksforGeeks | a computer science portal for geeks

代码2:

Python3

# Python program explaining  
# numpy.char.replace() function  
  
# importing numpy as geek   
import numpy as geek  
  
gfg = geek.char.replace('This is a python article', 'python', 'Numpy-Python', count = 1) 
    
print (gfg)

输出:

This is a Numpy-Python article

相关用法


注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Numpy string operations | replace() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。