0
List[String] = List(id:1, count:23331, id:3, count:34123, id:4, count:4021)
私は出力が隣接する値をスカラーでペアにする方法は?
List((1,23331),(3,34123),(4,4021))
Scalaのコードの下になりたい
上記のように、私は、文字列のリストを持っている:
scala> val result = res11
result: List[String] = List(id:1, count:23331, id:3, count:34123, id:4, count:4021)
scala> result.map(elem => elem.split(":")(1))
res12: List[String] = List(1, 23331, 3, 34123, 4, 4021)
誰かが期待される出力を得るために私を助けてもらえ
result.map(elem => elem.split( ":")(1))。グループ化された(2).toList – banncee