How do I append a newline character for all lines except the last one? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T08:28:49Z http://stackoverflow.com/feeds/question/448320 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one 5 How do I append a newline character for all lines except the last one? Blue 2009-01-15T20:24:28Z 2009-03-17T13:28:36Z <p>I'm iterating through a HashMap (see <a href="http://stackoverflow.com/questions/448122/how-do-i-use-a-foreach-loop-in-java-to-loop-through-the-values-in-a-hashmap">my earlier question</a> for more detail) and building a string consisting of the data contained in the Map. For each item, I will have a new line, but for the very last item, I don't want the new line. How can I achieve this? I was thinking I could so some kind of check to see if the entry is the last one or not, but I'm not sure how to actually do that.</p> <p>Thanks!</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448333#448333 19 Answer by Jon Skeet for How do I append a newline character for all lines except the last one? Jon Skeet 2009-01-15T20:27:26Z 2009-01-15T20:27:26Z <p>Change your thought process from "append a line break all but the last time" to "prepend a line break all but the first time":</p> <pre><code>boolean first = true; StringBuilder builder = new StringBuilder(); for (Map.Entry&lt;MyClass.Key,String&gt; entry : data.entrySet()) { if (first) { first = false; } else { builder.append("\n"); // Or whatever break you want } builder.append(entry.key()) .append(": ") .append(entry.value()); } </code></pre> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448334#448334 1 Answer by Jared for How do I append a newline character for all lines except the last one? Jared 2009-01-15T20:27:49Z 2009-01-15T20:27:49Z <p>Assuming your foreach loop goes through the file in order just add a new line to every string and remove the last new line when your loop exits.</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448341#448341 0 Answer by Tiago for How do I append a newline character for all lines except the last one? Tiago 2009-01-15T20:29:04Z 2009-01-15T20:29:04Z <p>Not sure if this is the best, but it´s the easier way to do:</p> <p>loop through all the values and append the \n normally in the stringbuffer. Then, do something like this</p> <pre><code>sb.setLength(sb.length()-1); </code></pre> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448347#448347 20 Answer by Joel Coehoorn for How do I append a newline character for all lines except the last one? Joel Coehoorn 2009-01-15T20:30:54Z 2009-01-23T15:33:32Z <p>one method (with apologies to Jon Skeet for borrowing part of his Java code):</p> <pre><code>StringBuilder result = new StringBuilder(); string newline = ""; for (Map.Entry&lt;MyClass.Key,String&gt; entry : data.entrySet()) { result.append(newline) .append(entry.key()) .append(": ") .append(entry.value()); newline = "\n"; } </code></pre> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448365#448365 4 Answer by AndrĂ© for How do I append a newline character for all lines except the last one? AndrĂ© 2009-01-15T20:37:09Z 2009-01-15T20:37:09Z <p>Ususally for these kind of things I use apache-commons-lang <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html#join(java.util.Collection,%20java.lang.String)" rel="nofollow">StringUtils#join</a>. While it's not really hard to write all these kinds of utility functionality, it's always better to reuse existing proven libraries. <a href="http://commons.apache.org/" rel="nofollow">Apache-commons</a> is full of useful stuff like that!</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448526#448526 3 Answer by jan for How do I append a newline character for all lines except the last one? jan 2009-01-15T21:27:55Z 2009-01-15T21:27:55Z <p>If you use iterator instead of for...each your code could look like this:</p> <pre><code>StringBuilder builder = new StringBuilder(); Iterator&lt;Map.Entry&lt;MyClass.Key, String&gt;&gt; it = data.entrySet().iterator(); while (it.hasNext()) { Map.Entry&lt;MyClass.Key, String&gt; entry = it.next(); builder.append(entry.key()) .append(": ") .append(entry.value()); if (it.hasNext()) { builder.append("\n"); } } </code></pre> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/450514#450514 2 Answer by Luke for How do I append a newline character for all lines except the last one? Luke 2009-01-16T14:15:48Z 2009-01-16T14:15:48Z <p>Here's my succinct version, which uses the StringBuilder's length property instead of an extra variable:</p> <pre><code>StringBuilder builder = new StringBuilder(); for (Map.Entry&lt;MyClass.Key,String&gt; entry : data.entrySet()) { builder.append(builder.length() &gt; 0 ? "\n" : "") .append(entry.key()) .append(": ") .append(entry.value()); } </code></pre> <p>(Apologies and thanks to both Jon and Joel for "borrowing" from their examples.)</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/450548#450548 3 Answer by Jay R. for How do I append a newline character for all lines except the last one? Jay R. 2009-01-16T14:29:34Z 2009-01-16T14:29:34Z <p>What about this? </p> <pre><code>StringBuilder result = new StringBuilder(); for(Map.Entry&lt;MyClass.Key,String&gt; entry : data.entrySet()) { builder.append(entry.key()) .append(": ") .append(entry.value()) .append("\n"); } return builder.substring(0, builder.length()-1); </code></pre> <p>Obligatory apologies and thanks to both Jon and Joel for "borrowing" from their examples.</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/473348#473348 0 Answer by George Jempty for How do I append a newline character for all lines except the last one? George Jempty 2009-01-23T15:39:52Z 2009-01-25T12:43:21Z <p>This is where a join method, to complement split, would come in handy, because then you could just join all the elements using a new line as the separator, and of course it doesn't append a new line to the end of the result; that's how I do it in various scripting languages (Javascript, PHP, etc.).</p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/617199#617199 0 Answer by Adrian Kuhn for How do I append a newline character for all lines except the last one? Adrian Kuhn 2009-03-05T23:45:02Z 2009-03-05T23:45:02Z <p>If you use <a href="http://ssdl-wiki.cs.technion.ac.il/wiki/index.php/Class%5FSeparator" rel="nofollow">Class Separator</a>, you can do </p> <pre><code>StringBuilder buf = new StringBuilder(); Separator separator = new Separator("\n"); for (Map.Entry&lt;MyClass.Key,String&gt; entry: data.entrySet()) { builder.append(separator) .append(entry.key()) .append(": ") .append(entry.value()); } </code></pre> <p>The separator prints in empty string upon its first use, and the separator upon all subsequent uses. </p> http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/654252#654252 0 Answer by Joel Coehoorn for How do I append a newline character for all lines except the last one? Joel Coehoorn 2009-03-17T13:28:36Z 2009-03-17T13:28:36Z <p>Ha! Thanks to <a href="http://stackoverflow.com/questions/654054/separated-string-created-in-loop/654102#654102">this post</a> I've found another way to do this:</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>Of course this is in C# now and Java won't (yet) support the extension method, but you ought to be able to adapt it as needed &mdash; the main thing is the use of <code>String.Join</code> anyway, and I'm sure java has some analog for that.</p> <p>Also note that this means doing an extra iteration of the strings, because you must first create the array and then iterate over that to build your string. Also, you <em>will</em> create the array, where with some other methods you might be able to get by with an IEnumerable that only holds one string in memory at a time. But I really like the extra clarity. </p> <p>Of course, given the Extension method capability you could just abstract any of the other code into an extension method as well.</p>