Answers for "string builder with next line"

3

stringbuilder append new line

StringBuilder r = new StringBuilder();

//It should be
r.append("n");

//But I recommend you to do as below, 
//beacuse it is system independent
r.append(System.getProperty("line.separator"));
Posted by: Guest on April-17-2020

Browse Popular Code Answers by Language