Python rindex()方法
Python rindex()方法
Python rindex() 返回子字符串 str 在字符串中最后出現(xiàn)的位置,如果沒有匹配的字符串會報異常,你可以指定可選參數(shù)[beg:end]設置查找的區(qū)間。
語法
rindex()方法語法:
str.rindex(str, beg=0 end=len(string))
參數(shù)
- str -- 查找的字符串
- beg -- 開始查找的位置,默認為0
- end -- 結(jié)束查找位置,默認為字符串的長度。
返回值
返回子字符串 str 在字符串中最后出現(xiàn)的位置,如果沒有匹配的字符串會報異常。
實例
以下實例展示了rindex()函數(shù)的使用方法:
#!/usr/bin/python str1 = "this is string example....wow/b64/"; str2 = "is"; print str1.rindex(str2); print str1.index(str2);
以上實例輸出結(jié)果如下:
5 2
相關文章
- Python 模塊
- Python 文件I/O
- Python 多線程
- Python 高級鏈表
- Python 遞歸
- Python3 文件讀寫
- Python3 日期和時間
- Python3 內(nèi)置函數(shù)
- Python exp() 函數(shù)
- Python shuffle() 函數(shù)
- Python File seek() 方法
- Python File writelines() 方法
- Python os.chown() 方法
- Python os.rmdir() 方法
- Python capitalize()方法
- Python center()方法
- Python swapcase()方法
- Python Tuple 元組 min()方法
- Python Tuple 元組 tuple()方法
- Python time gmtime()方法