I have a spark dataframe and I want to process each sentence(lower, remove punctuation) of each line.
To be more specific:
|text |
+--------------------------------+
| This is a text.I want to split!
+---------------------------------
And I want to get this dataframe:
|text |
+---------------------------------
| [this is text ][i want to split]
+---------------------------------