Separated string created in loop - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:39:16Z http://stackoverflow.com/feeds/question/654054 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/654054/separated-string-created-in-loop 1 Separated string created in loop abatishchev 2009-03-17T12:39:16Z 2009-03-17T21:39:17Z <p>I'm searching the best way to create a string separated with another in a loop. I mean, for example, SQL reader:</p> <pre><code>StringBuilder sb = new StringBuilder(); while(reader.Read()) { sb.Append(reader[0]); sb.Append("&lt;br /&gt;"); } string result = sb.ToString(); result = result.Remove(result.LastIndexOf("&lt;br /&gt;")); // &lt;- </code></pre> <p>or creating SQL query string;</p> <pre><code>StringBuilder sb = new StringBuilder(); foreach(string v in values) { sb.Append(v); sb.Append(","); } string query = sb.ToString() query = query.Remove(query.LastIndexOf(",")); // &lt;- query = String.Concat("INSERT INTO [foo] ([bar]) VALUES(", query, ")"); </code></pre> <p>This is the best I have found:</p> <pre><code>List&lt;string&gt; list = new List&lt;string&gt;; while(reader.Read()) { list.Add(reader[0]); } string result = String.Join("&lt;br /&gt;", list.ToArray()); </code></pre> <p><strong>Edit:</strong> <strike>I know about <code>StringBuilder</code>, I didn't used it here just for some clarity</strike>. My general idea do not use <code>Remove</code> / <code>LastIndexOf</code> !</p> http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654093#654093 5 Answer by Rowland Shaw for Separated string created in loop Rowland Shaw 2009-03-17T12:50:34Z 2009-03-17T12:50:34Z <p>How's about:</p> <pre><code>StringBuilder builder; while (reader.Read()) { if( builder == null ) { builder = new StringBuilder(reader[0]); } else { builder.Append("&lt;br /&gt;"); builder.Append(reader[0]); } } string result = builder.ToString(); </code></pre> http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654102#654102 8 Answer by Brian Genisio for Separated string created in loop Brian Genisio 2009-03-17T12:53:06Z 2009-03-17T12:53:06Z <p>I am not a fan of StringBuilder unless you really know that you need to worry about performance. It produces ugly code. I would write it this way...</p> <pre><code>private IEnumerable&lt;string&gt; ReadAllStrings(DataReader reader) { while(reader.Read()) yield return reader[0]; } String.Join("&lt;br /&gt;", ReadAllStrings(reader).ToArray()); </code></pre> <p>If I were doing it a lot, I might consider an extension method:</p> <pre><code>public static class Extensions { public static string JoinWith(this IEnumerable&lt;string&gt; strings, string separator) { return String.Join(separator, strings.ToArray()); } } </code></pre> <p>Then, my code would look like this:</p> <pre><code>ReadAllStrings(reader).JoinWith("&lt;br /&gt;"); </code></pre> http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654290#654290 2 Answer by Joel Coehoorn for Separated string created in loop Joel Coehoorn 2009-03-17T13:38:40Z 2009-03-17T14:58:59Z <p>This is just a combination of several of the better ideas shown:</p> <pre><code>public static class Extensions { public static string JoinStrings(this DataReader reader, int ColumnIndex, string delimiter) { var result = new StringBuidler(); var delim = String.Empty; while (reader.Read()) { result.Append(delim).Append(reader[ColumnIndex].ToString()); delim = delimiter; } return result.ToString(); } } </code></pre> <p>Now all you have to do is call it like this:</p> <pre><code>string result = reader.JoinStrings(0, "&lt;br/&gt;"); </code></pre> http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654314#654314 1 Answer by ck for Separated string created in loop ck 2009-03-17T13:44:36Z 2009-03-17T13:44:36Z <p>Another .Net 2.0 solution - change the order:</p> <pre><code>reader.Read(); StringBuilder sb = new StringBuilder(reader[0]); while(reader.Read()) { sb.Append("&lt;br /&gt;"); sb.Append(reader[0]); } string result = sb.ToString(); </code></pre> http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654333#654333 1 Answer by Adrian for Separated string created in loop Adrian 2009-03-17T13:48:58Z 2009-03-17T13:51:31Z <pre><code>public class Separator { private string sep; private bool first = true; public Separator(string sep) { this.sep = sep; } public virtual string ToString() { string reply = first ? "" : sep; first = false; return reply; } } var sep = new Separator("&lt;br/&gt;"); var builder = new StringBuilder(); while (reader.Read()) { builder.Append (sep.ToString()) ; builder.Append (reader[0]) ; } </code></pre>