NumPy 的 find(~)
方法返回每個輸入字符串中指定子字符串第一次出現的索引。如果沒有找到,則返回-1。
注意
index(~)
與 find(~)
方法執行完全相同的操作,但不同之處在於,index(~)
在未找到輸入字符串時返回 ValueError
,而 find(~)
方法返回 -1
。
參數
1. a
| array_like
源數組。
2. sub
| string
要在源數組中搜索的子字符串。
3. start
| int
| optional
開始搜索的索引。默認情況下,開始=0。
4. end
| int
| optional
要搜索的索引。默認情況下,end 等於輸入數組的大小。
返回值
NumPy 整數索引數組。
例子
基本用法
np.char.find(["abcd", "def"], "bc")
array([ 1, -1])
請注意 "def"
如何返回 -1
,因為它不包含子字符串 "bc"
。
指定起始索引
np.char.find(["abcd"], "ab", start=1)
array([-1])
由於我們從第一個索引開始,因此對字符串 "bcd"
執行搜索,該字符串不包含子字符串 "ab"
。
指定結束索引
np.char.find(["abcd"], "cd", end=3)
array([-1])
由於我們在第三個索引(含)處停止搜索,因此對字符串 "abc"
執行搜索,該字符串不包含子字符串 "cd"
。
相關用法
- Python NumPy char less_equal方法用法及代碼示例
- Python NumPy char greater方法用法及代碼示例
- Python NumPy char equal方法用法及代碼示例
- Python NumPy char lower方法用法及代碼示例
- Python NumPy char less方法用法及代碼示例
- Python NumPy char split方法用法及代碼示例
- Python NumPy char greater_equal方法用法及代碼示例
- Python NumPy char multiply方法用法及代碼示例
- Python NumPy char upper方法用法及代碼示例
- Python NumPy char not_equal方法用法及代碼示例
- Python NumPy char isupper方法用法及代碼示例
- Python NumPy char add方法用法及代碼示例
- Python NumPy char count方法用法及代碼示例
- Python NumPy char rjust方法用法及代碼示例
- Python NumPy char rstrip方法用法及代碼示例
- Python NumPy char ljust方法用法及代碼示例
- Python Wand charcoal()用法及代碼示例
- Python numpy chararray.tostring用法及代碼示例
- Python numpy char.chararray.tostring用法及代碼示例
- Python NumPy choose方法用法及代碼示例
- Python chr方法用法及代碼示例
- Python chr()用法及代碼示例
- Python NumPy choice方法用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy char | find method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。