I have one big string with many words and I need every word which start with string stations: add to list like item. Here is example> Its windows 8 store app
var myBigString = myStrings;
myBigString contains this: stations: \"Budatínska\"\nstations: \"Bytčianska\"\n...
How I can in cycle when is word stations: add new item Budatínska to my list of string.
Something like :
List<string> mylist= new List<string>();
foreach(mystring in bigString)
if(mystring=="stations") add.mylist...