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

Have following Java code,that creates StringBuilder with "\n",i.e. carriage return delimiters:

while (scanner.hasNextLine()){
    sb.append(scanner.nextLine()).append("\n");
}

It's occurred,that after last String(line) had "\n" symbol.

How to gracefully remove last "\n" from resulting StringBuilder object?

thanks.

share|improve this question

7 Answers

up vote 10 down vote accepted

This has always worked for me

sb.setLength(sb.length() - 1);

Operation is pretty lightweight, internal value holding current content size will just be decreased by 1.

Also, check length value before doing it if you think buffer may be empty.

share|improve this answer
1  
This approach is interesting, although the length check later on seems a downside. – cherouvim Oct 16 '10 at 17:04
@cherouvim Yep. On the other hand, you don't allocate unnecessary memory, like with 'trim' or 'join'. Although, your answer is pretty good too, I often use that approach myself. – Nikita Rybak Oct 16 '10 at 17:08
In extremely high performance situations where I'd have to add millions of elements on sb I'd definitelly use your approach since it has the quickest loop (no if check). – cherouvim Oct 16 '10 at 17:10
The length call will likely be replaced with a direct variable lookup at runtime... and the check for length == 0 after only happens once, unlike other solutions where an if is done each iteration of the loop. So no real downsides compared to other ways. – TofuBeer Oct 16 '10 at 17:11
@TofuBeer: I agree. My concern was related to code clarity. – cherouvim Oct 16 '10 at 17:13

If you're working with a small enough number of lines, you can put all the lines in a List<String> and then use StringUtils.join(myList, "\n");

Another option is to trim() the resulting string.

Update after discovering guava's neat Joiner class:

Joiner.on('\n').join(myList)

share|improve this answer
+1 better than mine, assuming the List<String> can be known / stored reasonably. – andersoj Oct 16 '10 at 16:20
actually, can't find method join for StringUtils(that is sringframework class) – sergionni Oct 16 '10 at 16:53
Sorry that was unclear, I was referring to the apache commons-lang library. I put the link in the answer. – oksayt Oct 16 '10 at 16:56
ok, now i see,its' apache lib, unfortunately we don't have in our project – sergionni Oct 16 '10 at 16:56

Instead of having to remove it you could simply never add it.

while (scanner.hasNextLine()) {
    if (sb.length()>0) sb.append("\n");
    sb.append(scanner.nextLine());
}
share|improve this answer
This doesn't work properly if one or more lines at the beginning are blank. – Nayuki Minase May 10 '12 at 21:35
@NayukiMinase: You are right. – cherouvim May 11 '12 at 6:02
bool isFirst = true;
while (scanner.hasNextLine()){
  if(!isFirst)
    sb.append("\n"));
  else
    isFirst = false;

  sb.append(scanner.nextLine());

}
share|improve this answer
1  
neat way of getting rid of else isFirst = false;: if (!isFirst | (isFirst = false)) – aioobe Oct 16 '10 at 19:09
@aioobe nice, i dig it – Stephen Swensen Oct 16 '10 at 21:51

You could build the result without a newline to get rid of:

String separator = "";
while (scanner.hasNextLine()){
    sb.append(separator).append(scanner.nextLine());
    separator = "\n";
}
share|improve this answer
if (scanner.hasNextLine()) 
  sb.append(scanner.nextLine());
while (scanner.hasNextLine()){
  sb.append("\n").append(scanner.nextLine());
}
share|improve this answer
The problem here is the code duplication for appending. In this example it's trivial, but in other cases it may be not. So duplicating is not good. – cherouvim Oct 16 '10 at 16:59
Agreed. I think the trim() solution is inelegant, and mine suffers from code duplication. Maybe join() is the best... – andersoj Oct 16 '10 at 17:37

sb.deleteCharAt(sb.length()-1);

share|improve this answer
That will work only if content has been added on sb. – cherouvim Oct 16 '10 at 17:04

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.