Numpy 的 index(~)
方法返回給定子字符串第一次出現的索引。
注意
index(~)
和 find(~)
之間的區別
index(~)
方法與 find(~)
方法執行完全相同的操作,但不同之處在於 index(~)
返回 ValueError,而 find(~)
方法在未找到子字符串時返回 -1。
參數
1. a
| array-like
輸入字符串數組。
2. sub
| string
要搜索的子字符串。
3. start
| int
| optional
開始檢查的起始索引(包含)。
4. end
| int
| optional
要結束檢查的索引(含)。
返回值
如果 a
是標量,則返回單個布爾值。否則,返回一個 Numpy 布爾數組。
例子
指定子
np.char.index(["abcbc"], ["bc"])
array([1])
指定開始
np.char.index(["abcde"], ["ab"], start=1)
ValueError
在這裏,我們從索引 1 開始,這意味著我們正在檢查字符串 "bcde"
,該字符串不包含子字符串 "ab"
。
指定結束
np.char.index(["abcde"], ["de"], end=2)
ValueError
在這裏,我們以索引 2 結束,這意味著我們正在檢查字符串 "ab"
,該字符串不包含子字符串 "de"
。
相關用法
- Python Django index用法及代碼示例
- Python BeautifulSoup insert方法用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python BeautifulSoup insert_after方法用法及代碼示例
- Python int.from_bytes用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python int構造函數用法及代碼示例
- Python NumPy insert方法用法及代碼示例
- Python inspect.BoundArguments.apply_defaults用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
- Python int.bit_length用法及代碼示例
- Python input用法及代碼示例
- Python BeautifulSoup insert_before方法用法及代碼示例
- Python integer轉roman用法及代碼示例
- Python inspect.BoundArguments用法及代碼示例
- Python int.bit_count用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | index method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。