當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。