Python rindex()方法
Python rindex()方法
Python rindex() 返回子字符串 str 在字符串中最后出现的位置,如果没有匹配的字符串会报异常,你可以指定可选参数[beg:end]设置查找的区间。
语法
rindex()方法语法:
str.rindex(str, beg=0 end=len(string))
参数
- str -- 查找的字符串
- beg -- 开始查找的位置,默认为0
- end -- 结束查找位置,默认为字符串的长度。
返回值
返回子字符串 str 在字符串中最后出现的位置,如果没有匹配的字符串会报异常。
实例
以下实例展示了rindex()函数的使用方法:
#!/usr/bin/python str1 = "this is string example....wow/b64/"; str2 = "is"; print str1.rindex(str2); print str1.index(str2);
以上实例输出结果如下:
5 2
相关文章
- Python 模块
- Python 文件I/O
- Python 多线程
- Python 高级链表
- Python 递归
- Python3 文件读写
- Python3 日期和时间
- Python3 内置函数
- Python exp() 函数
- Python shuffle() 函数
- Python File seek() 方法
- Python File writelines() 方法
- Python os.chown() 方法
- Python os.rmdir() 方法
- Python capitalize()方法
- Python center()方法
- Python swapcase()方法
- Python Tuple 元组 min()方法
- Python Tuple 元组 tuple()方法
- Python time gmtime()方法