在 Python 中返回一个包含子字符串非重叠出现次数的数组


要返回一个包含子字符串非重叠出现次数的数组,请在 Python Numpy 中使用 numpy.char.count() 方法。第一个参数是 sub,即要搜索的子字符串。numpy.char 模块为 numpy.str_ 类型的数组提供了一组矢量化的字符串操作。

步骤

首先,导入所需的库 -

import numpy as np

创建一个一维字符串数组 -

arr = np.array(['kATIE', 'JOHN', 'KAte', 'AmY', 'BRADley'])

显示我们的数组 -

print("Array...\n",arr)

获取数据类型 -

print("\nArray datatype...\n",arr.dtype)

获取数组的维度 -

print("\nArray Dimensions...\n",arr.ndim)

获取数组的形状 -

print("\nOur Array Shape...\n",arr.shape)

获取数组的元素数量 -

print("\nNumber of elements in the Array...\n",arr.size)

要返回一个包含子字符串非重叠出现次数的数组,请在 Python Nump 中使用 numpy.char.count() 方法。第一个参数是 sub,即要搜索的子字符串 -

print("\nResult (count)...\n",np.char.count(arr, 'A'))

示例

import numpy as np

# Create a One-Dimensional array of strings
arr = np.array(['kATIE', 'JOHN', 'KAte', 'AmY', 'BRADley'])

# Displaying our array
print("Array...\n",arr)

# Get the datatype
print("\nArray datatype...\n",arr.dtype)

# Get the dimensions of the Array
print("\nArray Dimensions...\n",arr.ndim)

# Get the shape of the Array
print("\nOur Array Shape...\n",arr.shape)

# Get the number of elements of the Array
print("\nNumber of elements in the Array...\n",arr.size)

# To return an array with the number of non-overlapping occurrences of substring, use the numpy.char.count() method in Python Numpy
# The first parameter is the sub i.e. the substring to search for
print("\nResult (count)...\n",np.char.count(arr, 'A'))

输出

Array...
['kATIE' 'JOHN' 'KAte' 'AmY' 'BRADley']

Array datatype...
<U7

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

Result (count)...
[1 0 1 1 1]

更新于: 2022-02-28

147 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告

© . All rights reserved.