I have a List of strings:
List<string> _words = ExtractWords(strippedHtml);
_words
contains 1799 indexes; in each index there is a string.
Some of the strings contain only numbers, for example:
" 2"
or "2013"
I want to remove these strings and so in the end the List will contain only strings with letters and not digits.
A string like "001hello"
is OK but "001"
is not OK and should be removed.