Python rfind()方法
Python rfind()方法
Python rfind() 返回字符串最后一次出現(xiàn)的位置,如果沒(méi)有匹配項(xiàng)則返回 -1。
語(yǔ)法
rfind()方法語(yǔ)法:
str.rfind(str, beg=0 end=len(string))
參數(shù)
- str -- 查找的字符串
- beg -- 開(kāi)始查找的位置,默認(rèn)為 0
- end -- 結(jié)束查找位置,默認(rèn)為字符串的長(zhǎng)度。
返回值
返回字符串最后一次出現(xiàn)的位置,如果沒(méi)有匹配項(xiàng)則返回-1。
實(shí)例
以下實(shí)例展示了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);
以上實(shí)例輸出結(jié)果如下:
5 5 -1 2 2 -1
相關(guān)文章
- Python break 語(yǔ)句
- Python 網(wǎng)絡(luò)編程
- Python IDE
- Python 數(shù)組
- Python 節(jié)點(diǎn)
- 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()方法