How to convert a Scala Array/List/Seq (sequence) to string with mkString
Briefly

A simple way to convert a Scala array to a String is with the mkString method of the Array class.
Although I've written "array", the same technique also works with any Scala sequence, including Array, List, Seq, ArrayBuffer, Vector.
Note that I could have given the mkString function any String to use as a separating character.
In summary, I hope these Scala "Array to String" examples have been helpful.
Read at Alvinalexander
[
add
]
[
|
|
]