numpy字符串操作 |计数()函数
numpy.core.defchararray.count(arr, sub, start=0, end=None)
是另一个在 numpy 中进行字符串操作的函数。它返回一个数组,其中包含子字符串 sub 在 start 到结尾。
Parameters:
arr : array_like of str or unicode.
sub : [str or unicode] The substring which to be searched.
start : [ int, optional] The starting location in each string.
end : [ int, optional] The ending location in each string.
Returns : [ndarray] the number of non-overlapping occurrences of substring 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]