Python rfind() 返回字符串最后一次出现的位置,如果没有匹配项则返回-1。
rfind()方法语法:
str.rfind(str, beg=0 end=len(string))
返回字符串最后一次出现的位置,如果没有匹配项则返回-1。
以下实例展示了rfind()函数的使用方法:
#!/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);
以上实例输出结果如下:
5 5 -1 2 2 -1