(Limitations: System; ONLY)
I want to be able to split a string into an array and remove the spaces, I have this currently:
string[] split = converText.Split(',').Select(p => p.Trim()).ToArray();
EDIT: Also .ToArray cant be used apparently.
But the problem is, I can't use anything other then core system methods. So how can i trim spaces from a split or array without using .select or other non core ways.
Thanks!
by adding a space to your split criteria, it will get rid of them when you have RemoveEmptyEntries. However this will fail if there are entries with spaces in them. In which case you could just :-
It should work for all cases:
Usage: