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


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


用法:

StringMethods.match(pat: str, case: bool = True, flags: int = 0) → SeriesOrIndex

确定每个字符串是否与正则表达式匹配。

参数

patstr 或编译的正则表达式

字符序列或正则表达式。

flagsint,默认 0(无标志)

传递给正则表达式引擎的标志(例如 re.MULTILINE)

返回

布尔值的系列或索引。

注意

当前不支持参数casenaflags参数目前只支持re.DOTALL和re.MULTILINE。

例子

>>> import cudf
>>> s = cudf.Series(["rapids", "ai", "cudf"])

检查以 a 开头的字符串。

>>> s.str.match('a')
0    False
1     True
2    False
dtype: bool

检查以 ac 中的任何一个开头的字符串。

>>> s.str.match('[ac]')
0    False
1     True
2     True
dtype: bool

相关用法


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