Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Scalaでいいねを平らにする方法はSeq?("a", "b", "c")"a,b,c"
Seq
("a", "b", "c")
"a,b,c"
そして、コンマで区切られたものを元に戻す方法はString? ありがとう。
String
まず、次を試してください。
val seq = Seq("a", "b", "c") val string = seq.mkString(",")
2番目の場合:
val parsed = string.split(",")
を返すArrayため、それが でなければならない場合は、次のようになりますSeq。
Array
val parsed = string.split(",").toSeq