用法:
StringMethods.rpartition(sep: str = ' ', expand: bool = True) → SeriesOrIndex
在 sep 的最后一次出现处拆分字符串。
此方法在 sep 的最后一次出现处拆分字符串,并返回 3 个元素,其中包含分隔符之前的部分、分隔符本身和分隔符之后的部分。如果未找到分隔符,则返回包含两个空字符串的 3 个元素,然后是字符串本身。
- sep:str,默认“”(空格)
要拆分的字符串。
- DataFrame 或 MultiIndex
返回一个 DataFrame /MultiIndex
参数:
返回:
注意:
尚不支持参数
expand
,如果设置了默认值以外的任何值,则会引发NotImplementedError
。例子:
>>> import cudf >>> s = cudf.Series(['Linda van der Berg', 'George Pitt-Rivers']) >>> s 0 Linda van der Berg 1 George Pitt-Rivers dtype: object >>> s.str.rpartition() 0 1 2 0 Linda van der Berg 1 George Pitt-Rivers
也可用于索引:
>>> idx = cudf.Index(['X 123', 'Y 999']) >>> idx StringIndex(['X 123' 'Y 999'], dtype='object')
这将创建一个 MultiIndex:
>>> idx.str.rpartition() MultiIndex([('X', ' ', '123'), ('Y', ' ', '999')], )
相关用法
- Python cudf.core.column.string.StringMethods.rsplit用法及代码示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代码示例
- Python cudf.core.column.string.StringMethods.replace用法及代码示例
- Python cudf.core.column.string.StringMethods.rstrip用法及代码示例
- Python cudf.core.column.string.StringMethods.replace_tokens用法及代码示例
- Python cudf.core.column.string.StringMethods.rfind用法及代码示例
- Python cudf.core.column.string.StringMethods.rindex用法及代码示例
- Python cudf.core.column.string.StringMethods.repeat用法及代码示例
- Python cudf.core.column.string.StringMethods.rjust用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python cudf.core.column.string.StringMethods.endswith用法及代码示例
- Python cudf.core.column.string.StringMethods.title用法及代码示例
- Python cudf.core.column.string.StringMethods.contains用法及代码示例
- Python cudf.core.column.string.StringMethods.zfill用法及代码示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代码示例
- Python cudf.core.column.string.StringMethods.htoi用法及代码示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代码示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代码示例
- Python cudf.core.column.string.StringMethods.split用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.rpartition。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。