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


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


用法:

StringMethods.filter_alphanum(repl: str = None, keep: bool = True) → SeriesOrIndex

从此列中的字符串中删除非字母数字字符。

参数

replstr

用于代替已删除字符的可选字符串。

keepbool

设置为 False 以删除所有字母数字字符而不是保留它们。

返回

str dtype 的系列/索引

仅包含字母数字字符的字符串。

例子

>>> import cudf
>>> s = cudf.Series(["pears £12", "plums $34", "Temp 72℉", "100K℧"])
>>> s.str.filter_alphanum(" ")
0    pears  12
1    plums  34
2     Temp 72
3        100K
dtype: object

相关用法


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