Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
SQL RLIKE (regex LIKE) pattern matching.
Syntax
rlike(other)
Parameters
| Parameter | Type | Description |
|---|---|---|
other |
str | Regular expression pattern string |
Returns
Column (boolean)
Examples
df = spark.createDataFrame(
[(2, "Alice"), (5, "Bob")], ["age", "name"])
df.filter(df.name.rlike('ice$')).collect()
# [Row(age=2, name='Alice')]