I have a string like
"username 234234 some text"
And I would like to devide them in
"username"
"234234"
and "some text"
I tried with split and substring but failed with finding the second space, most often a blank text got returned.
Thank you very much!