在 Python 中,針對每個元素返回子字串在字串中找到的最高索引


要在 Python NumPy 中返回字串中找到子字串 sub 的最高索引,可以使用 numpy.char.rfind() 方法。該方法返回整數輸出陣列。如果找不到 sub,則返回 -1。

第一個引數是輸入陣列。第二個引數是要搜尋的子字串。第三個和第四個引數是可選引數,其中 start 和 end 的解釋與切片表示法相同。

步驟

首先,匯入所需的庫:

import numpy as np

建立一個一維字串陣列:

arr = np.array(['KATIE', 'JOHN', 'AmY', 'BRATleuATp'])

顯示我們的陣列:

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)

要返回字串中找到子字串 sub 的最高索引,可以使用 numpy.char.rfind() 方法:

print("\nResult (find)...\n",np.char.rfind(arr, 'AT', start = 4, end = 9))

示例

import numpy as np

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

# 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 the highest index in the string where substring sub is found, use the numpy.char.rfind() method in Python Numpy

print("\nResult (find)...\n",np.char.rfind(arr, 'AT', start = 4, end = 9))

輸出

Array...
['KATIE' 'JOHN' 'AmY' 'BRATleuATp']

Array datatype...
<U10

Array Dimensions...
1

Our Array Shape...
(4,)

Number of elements in the Array...
4

Result (find)...
[-1 -1 -1 7]

更新於:2022年2月24日

204 次檢視

啟動您的職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.