当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Numpy string count()用法及代码示例


numpy.core.defchararray.count(arr, sub, start=0, end=None) 是另一个在numpy中执行字符串操作的函数,它返回一个数组,该数组的子字符串sub的不重叠出现次数在开始到结束的范围内。

参数:
arr :str或unicode的数组。
sub :[str或unicode]要搜索的子字符串。
start :[int,可选]每个字符串中的起始位置。
end :[int,可选]每个字符串中的结束位置。

返回:[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]


相关用法


注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 numpy string operations | count() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。