vote up 1 vote down star
1

Hi, I have a program where an array gets its data using string.Split(char[] delimiter). (using ';' as delimiter) Some of the values, though, are null ie. the string has parts where there is no data so it does something like this: 1 ;2 ; ; 3; This leads to my array having null values.

How do I get rid of them? Thanks.

flag

You should edit your question to remove null and only state empty strings. string.Split doesn't give null strings, just empty ones. – Samuel Mar 11 at 19:06

3 Answers

vote up 15 vote down check

Try this:

yourString.Split(new string[] {";"}, StringSplitOptions.RemoveEmptyEntries);
link|flag
Beat me by a few seconds :( – Joel Coehoorn Mar 11 at 18:25
That does not compile. You need to use new char[]{';'} as the first parameter. – Guffa Mar 11 at 18:44
Guffa: Thanks, I totally forgot about that. – DrJokepu Mar 11 at 18:49
vote up 0 vote down

You should replace multiple adjacent semicolons with one semicolon before splitting the data.

This would replace two semicolons with one semicolon:

datastr = datastr.replace(";;",";");

But, if you have more than two semicolons together, regex would be better.

datastr = Regex.Replace(datastr, "([;][;]+)", ";");
link|flag
vote up 1 vote down

You could use the Where linq extension method to only return the non-null or empty values.

string someString = "1;2;;3;";

IEnumerable<string> myResults = someString.Split(';').Where<string>(s => !string.IsNullOrEmpty(s));
link|flag
You could possibly insert a .Select(s => s.Trim()) between Split and Where so that whitespace-only strings will get removed as well. – DrJokepu Mar 11 at 18:29
1  
Note: The Split method never produces null values. – Guffa Mar 11 at 18:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.