当前分类:python>>正文

Python字符串查找:rfind方法的实现和应用

来源:互联网   更新时间:2023年8月12日  

Python 笔记

一、rfind()方法的简介

str.rfind(sub[, start[, end]])

二、rfind()方法的实现原理

三、rfind()方法的应用

path = "/home/test/test.py"
filename = path[path.rfind("/")+1:]
print(filename)
s = "hello, world!"
pos = s.rfind("!")
print(pos)
text = "Python is a great language. I love Python."
pos = text.rfind("Python")
print(pos)

四、总结

本文固定链接:https://6yhj.com/leku-p-5344.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 缓存