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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。