I have a array of integers: int [] number = new int[] { 2,3,6,7 };
What is the easiest way of converting these in to a single string where the number are separated by a character (like: "2,3,4,7")?
I'm in C# and .NET 3.5.
|
8
|
|||
|
|
|
EDIT: I see several solutions advertise usage of StringBuilder. Someone complaints that Join method should take an IEnumerable argument. I'm going to disappoint you :) String.Join requires array for a single reason - performance. Join method needs to know the size of the data to effectively preallocate necessary amount of memory. Here is a part of internal implementation of String.Join method:
I'm too lazy to compare performance of suggested methods. But something tells me that Join will win :) |
||||||||||
|
|
|
We have to convert each of the items to a The |
|||
|
|
|
|
If your array of integers may be large, you'll get better performance using a StringBuilder. E.g.:
Edit: When I posted this I was under the mistaken impression that "StringBuilder.Append(int value)" internally managed to append the string representation of the integer value without creating a string object. This is wrong: inspecting the method with Reflector shows that it simply appends value.ToString(). Therefore the only potential performance difference is that this technique avoids one array creation, and frees the strings for garbage collection slightly sooner. In practice this won't make any measurable difference, so I've upvoted this better solution. |
||||||||
|
|
|
One mixture of the two approaches would be to write an extension method on IEnumerable<T> which used a StringBuilder. Here's an example, with different overloads depending on whether you want to specify the transformation or just rely on plain ToString. I've named the method "JoinStrings" instead of "Join" to avoid confusion with the other type of Join. Perhaps someone can come up with a better name :)
|
||||
|
|
|
I agree with the lambda expression for readability and maintainability, but it will not always be the best option. The downside to using both the IEnumerable/ToArray and StringBuilder approaches is that they have to dynamically grow a list, either of items or characters, since they do not know how much space will be needed for the final string. If the rare case where speed is more important than conciseness, the following is more efficient.
|
||
|
|
|
|
You can do
Check out Separator Delimited ToString for Array, List, Dictionary, Generic IEnumerable |
||||
|
|
|
Although the OP specified .NET 3.5, people wanting to do this in .NET 2.0 with C#2 can do this:
I find there are a number of other cases where the use of the Convert.xxx functions is a neater alternative to a lambda, although in C#3 the lambda might help the type-inferencing. A fairly compact C#3 version which works with .NET 2.0 is this:
|
||
|
|