Column.EndsWith Method

Definition

Overloads

EndsWith(String)

String ends with another string literal. Returns a boolean column based on a string match.

EndsWith(Column)

String ends with. Returns a boolean column based on a string match.

EndsWith(String)

String ends with another string literal. Returns a boolean column based on a string match.

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

Parameters

literal
String

The string literal used to check how values in a column ends.

Returns

A boolean column where entries are true if values in the current column does indeed end with the given string literal.

Applies to

EndsWith(Column)

String ends with. Returns a boolean column based on a string match.

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

Parameters

other
Column

The other column containing strings with which to check how values in this column ends.

Returns

A boolean column where entries are true if values in the current column does indeed end with the values in the given column.

Applies to