이것 의 반대보다 약간 더 .
에서 : 다중 행 DSV 데이터 및 단일 구분 문자. DSV는 파일, 파일 이름, 줄 바꿈으로 구분 된 문자열, 문자열 목록 등으로 사용할 수 있습니다. 모든 레코드의 필드 수는 동일하며 필드는 비어 있지 않습니다. 데이터에 구분 문자가 없으며 인용 또는 이스케이프 메커니즘이 없습니다.
Out : DSV를 나타내는 데이터 구조 (예 : 문자열 목록 또는 문자열 매트릭스).
예
["here is,some,sample","data,delimited,by commas"]
그리고 ","
:
[["here is","some","sample"],["data","delimited","by commas"]]
["hello;\"","\";world","\";\""]
and ";"
:
[["hello","\""],["\"","world"],["\"","\""]]
(이 예제는 JSON을 사용하므로 이스케이프 처리)
["to be or not","that is the question"]
그리고 " "
:
[["to","be","or","not"],["that","is","the","question"]]
",for,example,this,string,"