我有一个 CSV 文件,它实际上是一组许多 CSV 文件。像这样的东西:
"First Part"
"Some", "data", "in", "here"
"More", "stuff", "over", "here"
"Another Part"
"This", "section", "is", "not", "the", "same", "as", "the", "first"
"blah", "blah", "blah", "blah", "blah", "blah", "blah", "blah", "blah"
"Yet another section"
"And", "this", "is", "yet", "another"
"blah", "blah", "blah", "blah", "blah"
我想把它分解成单独的组件。鉴于我知道每个部分的标题,如果我可以做某种groupBy
或某事,我可以传递一组表示标题模式的正则表达式并返回 aSeq[Seq[String]]
或类似的东西。