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


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