用法:
StringMethods.filter_alphanum(repl: str = None, keep: bool = True) → SeriesOrIndex
從此列中的字符串中刪除非字母數字字符。
- repl:str
用於代替已刪除字符的可選字符串。
- keep:bool
設置為 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
相關用法
- Python cudf.core.column.string.StringMethods.filter_tokens用法及代碼示例
- Python cudf.core.column.string.StringMethods.filter_characters用法及代碼示例
- Python cudf.core.column.string.StringMethods.find用法及代碼示例
- Python cudf.core.column.string.StringMethods.findall用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.core.column.string.StringMethods.endswith用法及代碼示例
- Python cudf.core.column.string.StringMethods.title用法及代碼示例
- Python cudf.core.column.string.StringMethods.contains用法及代碼示例
- Python cudf.core.column.string.StringMethods.rsplit用法及代碼示例
- Python cudf.core.column.string.StringMethods.zfill用法及代碼示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代碼示例
- Python cudf.core.column.string.StringMethods.htoi用法及代碼示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代碼示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代碼示例
- Python cudf.core.column.string.StringMethods.split用法及代碼示例
- Python cudf.core.column.string.StringMethods.ngrams用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代碼示例
- Python cudf.core.column.string.StringMethods.insert用法及代碼示例
- Python cudf.core.column.string.StringMethods.pad用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.filter_alphanum。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。