當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark Column.startswith用法及代碼示例


本文簡要介紹 pyspark.sql.Column.startswith 的用法。

用法:

Column.startswith(other)

字符串開頭。根據字符串匹配返回布爾值 Column

參數

other Column 或 str

行首的字符串(不要使用正則表達式 ^ )

例子

>>> df.filter(df.name.startswith('Al')).collect()
[Row(age=2, name='Alice')]
>>> df.filter(df.name.startswith('^Al')).collect()
[]

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.sql.Column.startswith。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。