当前位置:首页 > 行业动态 > 正文

python中rfind函数的用法

rfind函数用于在字符串中从右向左查找指定字符或子字符串的最后一次出现的位置,返回索引值。

rfind函数是Python中的一个字符串方法,用于从右向左查找子字符串在原字符串中的位置,如果找到子字符串,则返回其最右边字符的索引值;如果没有找到,则返回1。

用法:

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

参数说明:

str:原字符串,即要在其中查找子字符串的字符串。

sub:子字符串,即要在原字符串中查找的字符串。

start(可选):查找的起始位置,默认为0。

end(可选):查找的结束位置,默认为字符串的长度。

返回值:

如果找到子字符串,则返回其最右边字符的索引值;如果没有找到,则返回1。

示例:

示例1:查找子字符串在原字符串中的位置
text = "Hello, world! Welcome to the world of Python."
result = text.rfind("world")
print(result)  # 输出:18
示例2:从指定位置开始查找子字符串在原字符串中的位置
text = "Hello, world! Welcome to the world of Python."
result = text.rfind("world", 0, 5)
print(result)  # 输出:1
示例3:在指定范围内查找子字符串在原字符串中的位置
text = "Hello, world! Welcome to the world of Python."
result = text.rfind("world", 6, 20)
print(result)  # 输出:18
0