Column.RLike(String) Method

Definition

SQL RLIKE expression (LIKE with Regex). Returns a boolean column based on a regex match.

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

Parameters

literal
String

The literal that is used to compute the Regex match

Returns

New column after applying the regex LIKE method

Applies to