共用方式為


Column.EndsWith 方法

定義

多載

EndsWith(String)

字串以另一個字串常值結尾。 根據字串比對傳回布林資料行。

EndsWith(Column)

字串結尾為 。 根據字串比對傳回布林資料行。

EndsWith(String)

字串以另一個字串常值結尾。 根據字串比對傳回布林資料行。

public Microsoft.Spark.Sql.Column EndsWith (string literal);
member this.EndsWith : string -> Microsoft.Spark.Sql.Column
Public Function EndsWith (literal As String) As Column

參數

literal
String

用來檢查資料行中值結束方式的字串常值。

傳回

布林資料行,如果目前資料行中的值確實以指定的字串常值結尾,則為 true。

適用於

EndsWith(Column)

字串結尾為 。 根據字串比對傳回布林資料行。

public Microsoft.Spark.Sql.Column EndsWith (Microsoft.Spark.Sql.Column other);
member this.EndsWith : Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Function EndsWith (other As Column) As Column

參數

other
Column

另一個包含字串的資料行,用來檢查此資料行中的值結束方式。

傳回

布林資料行,如果目前資料行中的值確實以指定資料行中的值結尾,則專案為 true。

適用於