Scala List addString() method with a separator with example Last Updated : 26 Jul, 2019 Comments Improve Suggest changes Like Article Like Report This method is same as addString() method but here a separator is also included. Method Definition: def addString(b: StringBuilder, sep: String): StringBuilder Return Type: It returns the elements of the list to a string builder along with a separator between them. Example #1: Scala // Scala program of addString() // method with a separator // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a list val m1 = List(1, 3, 5, 2) // Applying addString method val res = m1.addString(new StringBuilder(), "*") // Displays output println(res) } } Output: 1*3*5*2 Example #2: Scala // Scala program of addString() // method with a separator // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a list val m1 = List(1, 3, 5, 2) // Applying addString method val res = m1.addString(new StringBuilder(), "_") // Displays output println(res) } } Output: 1_3_5_2 Comment More infoAdvertise with us Next Article Scala List addString() method with a separator with example N nidhi1352singh Follow Improve Article Tags : Scala Scala Scala-Method Scala-list Similar Reads Scala Map addString() method with a separator with example This method is identical to the addString() method but here a separator is also included. Method Definition: def addString(b: StringBuilder, sep: String): StringBuilder Where, sep is the separator stated. Return Type: It returns the elements of the map in the String Builder and a separator is also a 1 min read Scala Iterator addString() method with a separator with example This method is same as addString() method but here we can even include a separator between all the elements of an Iterator. Method Definition : def addString(b: StringBuilder, sep: String): StringBuilder Where, sep is the separator. Return Type :It returns the elements of an iterator in the String B 1 min read Scala SortedMap addString() method with a separator with example This method is identical to the addString() method but here a separator is also included. Method Definition: def addString(b: StringBuilder, sep: String): StringBuilder Where, sep is the separator stated. Return Type: It returns the elements of the SortedMap in the String Builder and a separator is 2 min read Scala List addString() method with a start, a separator and an end with example This method is same as addString() method but here a start, a separator and an end are also included. Method Definition: def addString(b: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder Where, sep is the separator stated. Return Type: It returns the elements of 1 min read Scala List mkString() method with a separator with example The mkString() method is utilized to display all the elements of the list in a string along with a separator. Method Definition: def mkString(sep: String): String Return Type: It returns all the elements of the list in a string along with a separator. Example #1: Scala // Scala program of mkString() 1 min read Like