Python rfind()方法
Python rfind()方法
Python rfind() 返回字符串最后一次出現(xiàn)的位置,如果沒有匹配項則返回 -1。
語法
rfind()方法語法:
str.rfind(str, beg=0 end=len(string))
參數(shù)
- str -- 查找的字符串
- beg -- 開始查找的位置,默認為 0
- end -- 結(jié)束查找位置,默認為字符串的長度。
返回值
返回字符串最后一次出現(xiàn)的位置,如果沒有匹配項則返回-1。
實例
以下實例展示了rfind()函數(shù)的使用方法:
#!/usr/bin/python str = "this is really a string example....wow/b64/"; substr = "is"; print str.rfind(substr); print str.rfind(substr, 0, 10); print str.rfind(substr, 10, 0); print str.find(substr); print str.find(substr, 0, 10); print str.find(substr, 10, 0);
以上實例輸出結(jié)果如下:
5 5 -1 2 2 -1
相關(guān)文章
- Python break 語句
- Python 網(wǎng)絡編程
- Python IDE
- Python 數(shù)組
- Python 節(jié)點
- Python 鏈表
- Python 遞歸
- Python 回溯
- Python3 OS 文件/目錄方法
- Python exp() 函數(shù)
- Python log10() 函數(shù)
- Python os.chown() 方法
- Python os.fdatasync() 方法
- Python os.fstat() 方法
- Python os.fsync() 方法
- Python os.makedirs() 方法
- Python os.open() 方法
- Python isdecimal()方法
- Python 字典 Dictionary setdefault()方法
- Python Tuple 元組 max()方法