I have an array of type string which has numbers and characters such as string[] TagsSeperatedArray={"tag1","tag2","1234",""} i want to remove 1234 and "" from the array. How can I do this. Can someone please help me. I am using asp.net c#.
foreach(var item in TagsSeperatedArray)
{
if()
{
}
}