This is the string i am adding to a list
1 The first line\n
The Second line\n
The Third Line\n
3 The fourth Line\n
List<string> listString;
listString = data.Split('\n').ToList();
Now from this list i want to remove those elements which start with a number.
Currently loop over the list and remove those elements which start with a number.
is this the only way or we can do it in much better way as the list has a very big size.