I have a string with data and what I want to do is take out desired words that have specific characters and then add each word to an array [] with data taken from the text
string datos = "Hay datos <Etiqueta>que [re]quiero <Etiqueta>Hola que tal";
In this string I want to extract the words that are after . and until the space is found
In this case, the result I want to obtain would be:
string[] Datos = new string[2];
Datos[0] = "que";
Datos[1] = "Hola";