numpy.core.defchararray.rindex()函數在找不到子字符串子項時引發ValueError。逐元素調用str.rindex。
用法: numpy.core.defchararray.rindex(arr, sub, start = 0, end = None)
參數:
arr:[str或Unicode的array-like] str的Array-like。
sub:[str或unicode]輸入字符串或unicode。
start,end:[int,可選]可選參數start和end被解釋為切片表示法。
Return:返回int的輸出數組。
代碼1:
Python3
# Python program explaining
# numpy.char.rindex() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sub = 'science'
gfg = geek.char.rindex(arr, sub)
print (gfg)
輸出:
27
代碼2:
Python3
# Python program explaining
# numpy.char.rindex() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sub = 'geeks'
gfg = geek.char.rindex(arr, sub, start = 0, end = None)
print (gfg)
輸出:
46
相關用法
- Numpy string less()用法及代碼示例
- Numpy string isnumeric()用法及代碼示例
- Numpy string upper()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string lower()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Numpy string istitle()用法及代碼示例
- Numpy string isdigit()用法及代碼示例
- Numpy string find()用法及代碼示例
- Numpy string index()用法及代碼示例
- Numpy string isspace()用法及代碼示例
- Numpy string swapcase()用法及代碼示例
- Numpy string isalpha()用法及代碼示例
- Numpy string isdecimal()用法及代碼示例
- Numpy string isupper()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
- Numpy string join()用法及代碼示例
- Numpy string ljust()用法及代碼示例
- Numpy string rjust()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 Numpy string operations | rindex() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。