I\'ve read several posts on using the \"like\" operator to filter a spark dataframe by the condition of containing a string/expression, but was wondering if the following is a \
Try rlike function as mentioned below.
df.filter( rlike "")
for example.
dk = dx.filter($"keyword" rlike "")