本文简要介绍
pyspark.pandas.Series.str.count
的用法。用法:
str.count(pat: str, flags: int = 0) → ps.Series
计算系列中每个字符串中模式的出现次数。
此函数用于计算特定正则表达式模式在系列的每个字符串元素中重复的次数。
- pat:str
有效的正则表达式。
- flags:int,默认 0(无标志)
re 模块的标志。
- int系列
包含模式匹配整数计数的系列。
参数:
返回:
例子:
>>> s = ps.Series(['A', 'B', 'Aaba', 'Baca', np.NaN, 'CABA', 'cat']) >>> s.str.count('a') 0 0.0 1 0.0 2 2.0 3 2.0 4 NaN 5 0.0 6 1.0 dtype: float64
转义“$”以找到文字美元符号。
>>> s = ps.Series(['$', 'B', 'Aab$', '$$ca', 'C$B$', 'cat']) >>> s.str.count('\$') 0 1 1 0 2 1 3 2 4 2 5 0 dtype: int64
相关用法
- Python pyspark Series.str.contains用法及代码示例
- Python pyspark Series.str.capitalize用法及代码示例
- Python pyspark Series.str.center用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.str.lstrip用法及代码示例
- Python pyspark Series.str.len用法及代码示例
- Python pyspark Series.str.slice用法及代码示例
- Python pyspark Series.str.isnumeric用法及代码示例
- Python pyspark Series.str.endswith用法及代码示例
- Python pyspark Series.str.swapcase用法及代码示例
- Python pyspark Series.str.isdecimal用法及代码示例
- Python pyspark Series.str.rstrip用法及代码示例
- Python pyspark Series.str.istitle用法及代码示例
- Python pyspark Series.str.match用法及代码示例
- Python pyspark Series.str.rindex用法及代码示例
- Python pyspark Series.str.rsplit用法及代码示例
- Python pyspark Series.str.strip用法及代码示例
- Python pyspark Series.str.ljust用法及代码示例
- Python pyspark Series.str.title用法及代码示例
- Python pyspark Series.str.upper用法及代码示例
- Python pyspark Series.str.isupper用法及代码示例
- Python pyspark Series.str.pad用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.str.count。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。