在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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。