Python 的 str.rpartition(~)
方法在最后一次出现分隔符处拆分字符串,以返回包含三个元素的元组:分隔符之前的部分、分隔符本身以及分隔符之后的部分。
参数
1. sep
| string
用作分隔符的字符串。
返回值
返回值取决于以下情况:
案子 |
返回值 |
---|---|
在字符串中找到分隔符 |
具有三个元素的元组: 第一个元素:分隔符之前的部分 第二个元素:分隔符本身 第三个元素:分隔符之后的部分 |
在字符串中找不到分隔符 |
具有三个元素的元组: 第一个元素:空字符串 第二个元素:空字符串 第三个元素:字符串本身 |
例子
在字符串中找到分隔符
要在最后一次出现分隔符 'll'
时拆分 "Hello fellow SkyTowner!"
:
x = "Hello fellow SkyTowner!"
x.rpartition('ll')
('Hello fe', 'll', 'ow SkyTowner!')
('Hello fe', 'll', 'ow SkyTowner!')
请注意,我们返回一个包含三个元素的元组:最后一次出现分隔符之前的部分 ( 'Hello fe'
)、分隔符本身 ( 'll'
) 以及最后一次出现分隔符之后的部分 ( 'ow SkyTowner!'
)。
在字符串中找不到分隔符
要在最后一次出现分隔符 'tt'
时拆分 "Hello fellow SkyTowner!"
:
y = "Hello fellow SkyTowner!"
y.rpartition('tt')
('', '', 'Hello fellow SkyTowner!')
由于字符串 "Hello fellow SkyTowner!"
中不存在分隔符 'tt'
,因此我们返回一个包含两个空字符串的元组,然后返回原始字符串本身。
相关用法
- Python String rpartition()用法及代码示例
- Python String rstrip方法用法及代码示例
- Python String rsplit()用法及代码示例
- Python String rjust方法用法及代码示例
- Python String replace()用法及代码示例
- Python String rindex()用法及代码示例
- Python String rjust()用法及代码示例
- Python String rindex方法用法及代码示例
- Python String rstrip()用法及代码示例
- Python String rfind方法用法及代码示例
- Python String rsplit方法用法及代码示例
- Python String replace方法用法及代码示例
- Python String rfind()用法及代码示例
- Python String count方法用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String Center()用法及代码示例
- Python String zfill方法用法及代码示例
- Python String decode()用法及代码示例
- Python String count()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String endswith方法用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String startswith()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | rpartition method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。