I have a string with words that sometimes have after them ,, ;, ., :. It is possible to have one or more spaces after these punctuation characters. I need to extract just the existent words.
For example, from:
'I use Python, SQL, C++. I need: apples and oranges'
I need to get:
I, use, Python, SQL, C++, I, need, apples, and, oranges
The split_part function can be used to split on a character. Is there a way to use this function (or a similar one) to get this splitting. I am thinking on a regular expression instead o the character but I am not sure which one to use.