用法:
StringMethods.insert(start: int = 0, repl: str = None) → SeriesOrIndex
將指定字符串插入到每個字符串的指定位置。
- start:int
要替換的字符串的開始位置。默認是每個字符串的開頭。指定 -1 以在每個字符串的末尾插入。
- repl:str
要插入到指定位置值的字符串。
- 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
相關用法
- Python cudf.core.column.string.StringMethods.index用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.core.column.string.StringMethods.isdecimal用法及代碼示例
- Python cudf.core.column.string.StringMethods.isspace用法及代碼示例
- Python cudf.core.column.string.StringMethods.islower用法及代碼示例
- Python cudf.core.column.string.StringMethods.isfloat用法及代碼示例
- Python cudf.core.column.string.StringMethods.isalnum用法及代碼示例
- Python cudf.core.column.string.StringMethods.ishex用法及代碼示例
- Python cudf.core.column.string.StringMethods.isnumeric用法及代碼示例
- Python cudf.core.column.string.StringMethods.ip_to_int用法及代碼示例
- Python cudf.core.column.string.StringMethods.isupper用法及代碼示例
- Python cudf.core.column.string.StringMethods.isipv4用法及代碼示例
- Python cudf.core.column.string.StringMethods.istimestamp用法及代碼示例
- Python cudf.core.column.string.StringMethods.isalpha用法及代碼示例
- Python cudf.core.column.string.StringMethods.isdigit用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_consonant用法及代碼示例
- Python cudf.core.column.string.StringMethods.isinteger用法及代碼示例
- Python cudf.core.column.string.StringMethods.ip2int用法及代碼示例
- Python cudf.core.column.string.StringMethods.isempty用法及代碼示例
- Python cudf.core.column.string.StringMethods.istitle用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.insert。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。