I'm looking to split a QString. There are several words in the QString, separated by one or more(!) of the following symbols:
- whitespace
- tab
- CR
- LF
I'm looking to extract the words only. Basically, I'm trying to replicate the behavior of the Python str.split() function.
I know I can use a regular expression in order to achieve this, but what would it look like? Any other straightforward methods to achieve this are welcome as well.