Tuesday, June 11, 2013

nice way to concat with spaces between lines...

      public String getConcatResult(){
            String res = "";
            for (String line : this.result) { 
                res += (line.trim() + " "); 
            } 

            return res.trim();
        }

No comments:

Post a Comment