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


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


用法:

StringMethods.isalnum() → SeriesOrIndex

检查每个字符串中的所有字符是否都是字母数字。

这相当于为 Series/Index 的每个元素运行 Python 字符串方法str.isalnum()。如果字符串有零个字符,则为该检查返回 False。

相当于:isalpha() or isdigit() or isnumeric() or isdecimal()

返回

布尔系列或索引

与原始系列/索引长度相同的布尔值系列或索引。

例子

>>> import cudf
>>> s1 = cudf.Series(['one', 'one1', '1', ''])
>>> s1.str.isalnum()
0     True
1     True
2     True
3    False
dtype: bool

请注意,对于混合了任何其他标点符号或空格的字符的检查将评估为 false 以进行字母数字检查。

>>> s2 = cudf.Series(['A B', '1.5', '3,000'])
>>> s2.str.isalnum()
0    False
1    False
2    False
dtype: bool

相关用法


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