numpy字符串操作count()函数
numpy.core.defchararray.count(arr, sub, start=0, end=None)是另一个在numpy中进行字符串操作的函数。它返回一个数组,其中包含子串sub在start到end范围内非重叠出现的次数。
参数:
arr : array_like of str or unicode。
sub : [str or unicode] 要搜索的子串。
start : [ int, optional] 每个字符串的起始位置。
end : [ int, optional] 每个字符串中的结束位置。
返回: [ndarray] 子串sub的非重叠出现次数。
代码#1:
# Python program explaining
# numpy.char.count() method
# importing numpy as geek
import numpy as geek
# input arrays
in_arr = geek.array(['Sayantan', ' Sayan ', 'Sayansubhra'])
print ("Input array : ", in_arr)
# output arrays
out_arr = geek.char.count(in_arr, sub ='an')
print ("Output array: ", out_arr)
输出:
Input array : ['Sayantan' ' Sayan ' 'Sayansubhra']
Output array: [2 1 1]
代码#2:
# Python program explaining
# numpy.char.count() method
# importing numpy as geek
import numpy as geek
# input arrays
in_arr = geek.array(['Sayantan', ' Sayan ', 'Sayansubhra'])
print ("Input array : ", in_arr)
# output arrays
out_arr = geek.char.count(in_arr, sub ='a', start = 1, end = 8)
print ("Output array: ", out_arr)
输出:
Input array : ['Sayantan' ' Sayan ' 'Sayansubhra']
Output array: [3 2 2]