当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.core.column.string.StringMethods.insert用法及代码示例


用法:

StringMethods.insert(start: int = 0, repl: str = None) → SeriesOrIndex

将指定字符串插入到每个字符串的指定位置。

参数

startint

要替换的字符串的开始位置。默认是每个字符串的开头。指定 -1 以在每个字符串的末尾插入。

replstr

要插入到指定位置值的字符串。

返回

str dtype 的系列/索引

在指定位置插入指定字符串的新字符串系列。

例子

>>> import cudf
>>> s = cudf.Series(["abcdefghij", "0123456789"])
>>> s.str.insert(2, '_')
0    ab_cdefghij
1    01_23456789
dtype: object

如果没有传递repl,则不插入任何内容。

>>> s.str.insert(2)
0    abcdefghij
1    0123456789
dtype: object

start 也支持负值。

>>> s.str.insert(-1,'_')
0    abcdefghij_
1    0123456789_
dtype: object

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.insert。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。