當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。