Imagine I have the following string:
string texto = "Stackoverflow em Português";
If I want to know the index of the first space, just:
int index = texto.IndexOf(" ");
But in this case I have two spaces, and I would like to get the ind...
asked on
18.11.2015 / 11:30