在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
相關用法
- Numpy string less()用法及代碼示例
- Numpy string lower()用法及代碼示例
- Numpy string find()用法及代碼示例
- Numpy string ljust()用法及代碼示例
- Python numpy string partition()用法及代碼示例
- Numpy string isupper()用法及代碼示例
- Numpy string istitle()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Numpy string index()用法及代碼示例
- Numpy string rsplit()用法及代碼示例
- Numpy string join()用法及代碼示例
- Numpy string rjust()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
- Numpy string equal()用法及代碼示例
- Numpy string greater()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Numpy string strip()用法及代碼示例
- Numpy string isalpha()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 Numpy string operations | replace() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。