Open In App

Scala SortedMap addString() method with a start, a separator and an end with example

Improve
Improve
Like Article
Like
Save
Share
Report

This method is same as addString() method but here a start, a separator and an end is also included.

Method Definition: def addString(sb: mutable.StringBuilder, start: String, sep: String, end: String): mutable.StringBuilder

Where, sep is the separator stated.

Return Type: It returns the elements of the SortedMap in the String Builder and a start, a separator and an end is also included here.

Example #1:




// Scala program of addString() method
// with a start, a separator and an
// end
import scala.collection.immutable.SortedMap
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "cs" -> 3)
          
        // Applying addString method 
        val result = m1.addString(new StringBuilder(), ">>>", "|", "--")
          
        // Displays output
        println(result)
    }
}


Output:

>>>cs -> 3|for -> 3|geeks -> 5--

Example #2:




// Scala program of addString() method
// with a start, a separator and an
// end
import scala.collection.immutable.SortedMap
  
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "for" -> 3)
          
        // Applying addString method 
        val result = m1.addString(new StringBuilder(), ">>>", "|", "--")
          
        // Displays output
        println(result)
    }
}


Output:

>>>for -> 3|geeks -> 5--

So, here the identical keys are removed.



Last Updated : 02 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads