Separated string created in loop - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:39:16Zhttp://stackoverflow.com/feeds/question/654054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/654054/separated-string-created-in-loop1Separated string created in loopabatishchev2009-03-17T12:39:16Z2009-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("<br />");
}
string result = sb.ToString();
result = result.Remove(result.LastIndexOf("<br />")); // <-
</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(",")); // <-
query = String.Concat("INSERT INTO [foo] ([bar]) VALUES(", query, ")");
</code></pre>
<p>This is the best I have found:</p>
<pre><code>List<string> list = new List<string>;
while(reader.Read())
{
list.Add(reader[0]);
}
string result = String.Join("<br />", 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#6540935Answer by Rowland Shaw for Separated string created in loopRowland Shaw2009-03-17T12:50:34Z2009-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("<br />");
builder.Append(reader[0]);
}
}
string result = builder.ToString();
</code></pre>
http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654102#6541028Answer by Brian Genisio for Separated string created in loopBrian Genisio2009-03-17T12:53:06Z2009-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<string> ReadAllStrings(DataReader reader)
{
while(reader.Read())
yield return reader[0];
}
String.Join("<br />", 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<string> 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("<br />");
</code></pre>
http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654290#6542902Answer by Joel Coehoorn for Separated string created in loopJoel Coehoorn2009-03-17T13:38:40Z2009-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, "<br/>");
</code></pre>
http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654314#6543141Answer by ck for Separated string created in loopck2009-03-17T13:44:36Z2009-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("<br />");
sb.Append(reader[0]);
}
string result = sb.ToString();
</code></pre>
http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654333#6543331Answer by Adrian for Separated string created in loopAdrian2009-03-17T13:48:58Z2009-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("<br/>");
var builder = new StringBuilder();
while (reader.Read())
{
builder.Append (sep.ToString()) ;
builder.Append (reader[0]) ;
}
</code></pre>