Python rfind()方法

2021-09-04 15:15 更新

Python rfind()方法


描述

Python rfind() 返回字符串最后一次出現(xiàn)的位置,如果沒有匹配項(xiàng)則返回-1。

語法

rfind()方法語法:

str.rfind(str, beg=0 end=len(string))

參數(shù)

  • str -- 查找的字符串
  • beg -- 開始查找的位置,默認(rèn)為0
  • end -- 結(jié)束查找位置,默認(rèn)為字符串的長度。

返回值

返回字符串最后一次出現(xiàn)的位置,如果沒有匹配項(xiàng)則返回-1。

實(shí)例

以下實(shí)例展示了rfind()函數(shù)的使用方法:

#!/usr/bin/python

str = "this is really a string example....wow!!!";
str = "is";

print str.rfind(str);
print str.rfind(str, 0, 10);
print str.rfind(str, 10, 0);

print str.find(str);
print str.find(str, 0, 10);
print str.find(str, 10, 0);

以上實(shí)例輸出結(jié)果如下:

5
5
-1
2
2
-1
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號