略大于此的倒数。
输入: 多行DSV数据和单个定界符。DSV可以视为文件,文件名,以换行符分隔的字符串,字符串列表等。所有记录的字段数均相同,并且没有字段为空。数据不包含定界符,也没有引用或转义机制。
Out: 表示DSV的数据结构,例如,字符串列表列表或字符串矩阵。
例子
["here is,some,sample","data,delimited,by commas"]
和","
:
[["here is","some","sample"],["data","delimited","by commas"]]
["hello;\"","\";world","\";\""]
和";"
:(
[["hello","\""],["\"","world"],["\"","\""]]
转义,因为此示例使用JSON)
["to be or not","that is the question"]
和" "
:
[["to","be","or","not"],["that","is","the","question"]]
",for,example,this,string,"