Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am splitting a string based on whitespace as follows:

string myStr = "The quick brown fox jumps over the lazy dog";

char[] whitespace = new char[] { ' ', '\t' };
string[] ssizes = myStr.Split(whitespace);

It's irksome to define the char[] array everywhere in my code I want to do this. Is there more efficent way that doesn't require the creation of the character array (which is prone to error if copied in different places)?

share|improve this question
does this: myStr.Split(' '); not work? – woolagaroo May 24 '11 at 13:41
1  
If I understand this correctly this will only search for a space, not generic whitespace – Andrew S. May 24 '11 at 13:45

9 Answers

up vote 45 down vote accepted

If you just call

string[] ssize = myStr.Split(null)

or

string[] ssize = myStr.Split(new char[0]);

then white-space is assumed to be the splitting character. This is from the documentation.

If the separator parameter is null or contains no characters, white-space characters are assumed to be the delimiters.

[...]

If the separator parameter is null or contains no characters, white-space characters are assumed to be the delimiters. White-space characters are defined by the Unicode standard and return true if they are passed to the Char.IsWhiteSpace method.

always, Always, ALWAYS read the documentation!

share|improve this answer
2  
well putted, except the "always, Always, ALWAYS read the documentation!" - it was much faster googling and reaching here then reading MSDNs... :) – Hertzel Guinness Jul 20 '11 at 6:15
The trouble with splitting by whitespace is if you have to put it together again, you don't know which whitespace character to put back. – Ross Presser Nov 6 '12 at 21:45

According to the documentation :

If the separator parameter is null or contains no characters, white-space characters are assumed to be the delimiters. White-space characters are defined by the Unicode standard and return true if they are passed to the Char.IsWhiteSpace method.

So just call myStr.Split(); There's no need to pass in anything because separator is a params array.

share|improve this answer
+1 for the params tip – joshperry Feb 13 at 20:39

Why dont you use?:

string[] ssizes = myStr.Split(' ', '\t');
share|improve this answer
1  
There is no Split overload that takes two chars. – takrl May 24 '11 at 13:51
@takrl: Look here public string[] Split (params char[] separator) .NET v2 – Reniuz May 24 '11 at 14:02
Yes, this takes a character array. Your code snippet passes two single characters. – takrl May 24 '11 at 14:04
1  
@takrl: do you know what params keyword is??? – Reniuz May 24 '11 at 14:06
Pretty cool, +1 for that. Probably the person who downvoted didn't know either. – takrl May 24 '11 at 14:09

Note that adjacent whitespace will NOT be treated as a single delimiter, even when using String.Split(null). If any of your tokens are separated with multiple spaces or tabs, you'll get empty strings returned in your array.

From the documentation:

Each element of separator defines a separate delimiter character. If two delimiters are adjacent, or a delimiter is found at the beginning or end of this instance, the corresponding array element contains Empty.

share|improve this answer

If repeating the same code is the issue, write an extension method on the String class that encapsulates the splitting logic.

share|improve this answer

You can just do:

string myStr = "The quick brown fox jumps over the lazy dog";
string[] ssizes = myStr.Split(' ');

MSDN has more examples and references:

http://msdn.microsoft.com/en-us/library/b873y76a.aspx

share|improve this answer

Can't you do it inline?

var sizes = subject.Split(new char[] { ' ', '\t' });

Otherwise, if you do this exact thing often, you could always create constant or something containing that char array.

As others have noted you can according to the documentation also use null or an empty array. When you do that it will use whitespace characters automatically.

var sizes = subject.Split(null);
share|improve this answer

So don't copy and paste! Extract a function to do your splitting and reuse it.

public static string[] SplitWhitespace (string input)
{
    char[] whitespace = new char[] { ' ', '\t' };
    return input.Split(whitespace);
}

Code reuse is your friend.

share|improve this answer

Why don't you just do this:

var ssizes = myStr.Split(" \t".ToCharArray());

It seems there is a method String.ToCharArray() in .NET 4.0!

EDIT: As VMAtm has pointed out, the method already existed in .NET 2.0!

share|improve this answer
This method is in .NET 2.0!!! msdn.microsoft.com/en-us/library/ezftk57x(VS.80).aspx – VMAtm May 24 '11 at 13:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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