Python rindex()方法

2021-09-04 16:31 更新

Python rindex()方法


描述

Python rindex() 返回子字符串 str 在字符串中最后出現(xiàn)的位置,如果沒有匹配的字符串會(huì)報(bào)異常,你可以指定可選參數(shù)[beg:end]設(shè)置查找的區(qū)間。

語(yǔ)法

rindex()方法語(yǔ)法:

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

參數(shù)

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

返回值

返回子字符串 str 在字符串中最后出現(xiàn)的位置,如果沒有匹配的字符串會(huì)報(bào)異常。

實(shí)例

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

#!/usr/bin/python

str1 = "this is string example....wow!!!";
str2 = "is";

print str1.rindex(str2);
print str1.index(str2);

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

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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)