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


Python pyspark Column.endswith用法及代码示例


本文简要介绍 pyspark.sql.Column.endswith 的用法。

用法:

Column.endswith(other)

字符串以。根据字符串匹配返回布尔值 Column

参数

other Column 或 str

行尾的字符串(不要使用正则表达式 $ )

例子

>>> df.filter(df.name.endswith('ice')).collect()
[Row(age=2, name='Alice')]
>>> df.filter(df.name.endswith('ice$')).collect()
[]

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.sql.Column.endswith。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。