I am trying to split strings, which are separated by a variable number of spaces.
something like this:
abcde 123456
I know how to trim a string, but I am having hard time here, because the 2 strings has a variable amount of spaces. If a string is long, it will have less spaces in between, so I can't find a way to delimit them clearly, so I can save each of them in a different string.
How do you actually do so?