I have a string variable that contains csv value like this:
string str = "105, c#, vb, 345, 53, sql51";
so now i want to get only alphanumeric items in a list or array without using loop.
required result:
string result = "c#, vb, sql51";
Or in list Or in array...
105is alphanumeric... Did you mean "get only substrings which are not numbers"?C#is not alphanumeric.