Separate value from string

Hi,
297 13424 h2go bfree Fusion Sport Bottle - 23 oz. 2.7750 824.18

I want to sepearate pick the value like 297,13424,h2go bfree Fusion Sport Bottle - 23 oz,2.7750,824.18
how i do.

Use split function

string str = “297 13424 h2go…”

string arr;

arr = str.split (" ");

Hi,
i want like this:-
h2go bfree Fusion Sport Bottle - 23 oz
i try with space but not get expected output.

Please use str.split(” “c)