I want to split a string by everything but whitespaces.
Example:
Assume that I have a string:
"The quick brown fox jumps over the lazy dog"
I want to split it and get the following list of space-strings:
[" ", " ", " ", " ", " ", " ", " ", " "]
Can you please show me how to do it?
Thanks!