本文简要介绍
pyspark.pandas.Series.str.swapcase
的用法。用法:
str.swapcase() → ps.Series
将 Series/Index 中的字符串转换为交换大小写。
例子:
>>> s = ps.Series(['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']) >>> s 0 lower 1 CAPITALS 2 this is a sentence 3 SwApCaSe dtype: object
>>> s.str.swapcase() 0 LOWER 1 capitals 2 THIS IS A SENTENCE 3 sWaPcAsE dtype: object
相关用法
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.str.slice用法及代码示例
- Python pyspark Series.str.strip用法及代码示例
- Python pyspark Series.str.split用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.str.lstrip用法及代码示例
- Python pyspark Series.str.len用法及代码示例
- Python pyspark Series.str.isnumeric用法及代码示例
- Python pyspark Series.str.endswith用法及代码示例
- 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.ljust用法及代码示例
- Python pyspark Series.str.count用法及代码示例
- Python pyspark Series.str.title用法及代码示例
- Python pyspark Series.str.upper用法及代码示例
- Python pyspark Series.str.isupper用法及代码示例
- Python pyspark Series.str.pad用法及代码示例
- Python pyspark Series.str.repeat用法及代码示例
- Python pyspark Series.str.contains用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.str.swapcase。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。