How to make a space split? [duplicate]

0

I have this text:

"resultados 2018 295 1 br"

How do I separate by space and put in strings? example:

string ano = argumento[0];
// iria ser 2018
string ano = argumento[1];
// iria ser 295
string ano = argumento[2];
// iria ser 1
string ano = argumento[3];
// iria ser br
    
asked by anonymous 26.10.2018 / 23:25

0 answers