用法:
StringMethods.findall(pat: str, flags: int = 0, expand: bool = True) → SeriesOrIndex
在系列/索引中查找所有出现的模式或正则表达式。
- pat:str
模式或正则表达式。
- DataFrame
此系列/索引的每个字符串中的模式或正则表达式的所有非重叠匹配。
参数:
返回:
注意:
flags
参数当前不受支持。例子:
>>> import cudf >>> s = cudf.Series(['Lion', 'Monkey', 'Rabbit'])
搜索模式“Monkey”会返回一个匹配项:
>>> s.str.findall('Monkey') 0 0 <NA> 1 Monkey 2 <NA>
当模式匹配 Series 中的多个字符串时,返回所有匹配项:
>>> s.str.findall('on') 0 0 on 1 on 2 <NA>
也支持正则表达式。例如,搜索以单词‘on’ 结尾的所有字符串如下所示:
>>> s.str.findall('on$') 0 0 on 1 <NA> 2 <NA>
如果在同一字符串中多次找到该模式,则将多个字符串作为列返回:
>>> s.str.findall('b') 0 1 0 <NA> <NA> 1 <NA> <NA> 2 b b
相关用法
- Python cudf.core.column.string.StringMethods.find用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_tokens用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_characters用法及代码示例
- 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.findall。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。