I have a string array. I need to remove some items from that array. but I don't know the index of the items that need removing.
My array is : string[] arr= {" ","a","b"," ","c"," ","d"," ","e","f"," "," "}.
I need to remove the " " items. ie after removing " " my result should be arr={"a","b","c","d","e","f"}
how can I do this?