I have a List<string>
that contains some elements that have non-letter characters. For instance, I might have #232353;
which doesn't contain any letter at all, or I might have SomeText,SomeOtherText
and that element contains a comma, which is also not a letter. How can I remove these elements using linq? Something like this:
MyList = MyList.Where(...)
Thanks.