Python rfind()方法

Python 字符串

描述
Python rfind() 返回字符串最后一次出现的位置(从右向左查询),如果没有匹配项则返回-1。

语法
rfind()方法语法:

str.rfind(str, beg=0 end=len(string))
参数
str – 查找的字符串
beg – 开始查找的位置,默认为 0
end – 结束查找位置,默认为字符串的长度。
返回值
返回字符串最后一次出现的位置,如果没有匹配项则返回-1。

实例
以下实例展示了rfind()函数的使用方法:

#!/usr/bin/python

str = “this is really a string example…wow!!!”;
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);
以上实例输出结果如下:

5
5
-1
2
2
-1

转载:https://www.runoob.com/python/att-string-rfind.html
https://blog.csdn.net/youxin2012/article/details/9162415

https://blog.csdn.net/hushpe/article/details/45826209?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值