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


Python cudf.core.column.string.StringMethods.normalize_spaces用法及代碼示例


用法:

StringMethods.normalize_spaces() → SeriesOrIndex

刪除標記之間的額外空格並從每個字符串的開頭和結尾修剪空格。

返回

對象的係列或索引。

例子

>>> import cudf
>>> ser = cudf.Series(["hello \\t world"," test string  "])
>>> ser.str.normalize_spaces()
0    hello world
1    test string
dtype: object

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.normalize_spaces。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。