當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy char.count用法及代碼示例


本文簡要介紹 python 語言中 numpy.char.count 的用法。

用法:

char.count(a, sub, start=0, end=None)

返回一個數組,其中包含子字符串不重疊出現的次數在範圍中 [開始,結尾]。

逐元素調用 str.count

參數

a 類似 str 或 unicode 的 數組
sub str 或 unicode

要搜索的子字符串。

start, end 整數,可選

可選參數 start 和 end 被解釋為切片符號來指定計數的範圍。

返回

out ndarray

輸出整數數組。

例子

>>> c = np.array(['aAaAaA', '  aA  ', 'abBABba'])
>>> c
array(['aAaAaA', '  aA  ', 'abBABba'], dtype='<U7')
>>> np.char.count(c, 'A')
array([3, 1, 1])
>>> np.char.count(c, 'aA')
array([3, 1, 0])
>>> np.char.count(c, 'A', start=1, end=4)
array([2, 1, 1])
>>> np.char.count(c, 'A', start=1, end=3)
array([1, 0, 0])

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.char.count。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。