이 코드 조각의 목표는 데이터를 CSV 파일에 기록하여 인용 문자열이 데이터가 올바르게 이스케이프되었습니다. 그러나 결과 CSV에는 추가 따옴표가 포함되어 있어 불일치가 발생합니다.
<code class="go">package main import ( "encoding/csv" "fmt" "log" "os" ) func main() { f, err := os.Create("test.csv") if err != nil { log.Fatal(err) } defer f.Close() w := csv.NewWriter(f) record := []string{"Unquoted string", "Cr@zy text with , and \ and \" etc"} w.Write(record) record = []string{"Quoted string", fmt.Sprintf("%q", "Cr@zy text with , and \ and \" etc")} w.Write(record) w.Flush() }</code>
따옴표 붙은 문자열의 예상 출력은 다음과 같습니다.
[Unquoted string Cr@zy text with , and \ and " etc] [Quoted string "Cr@zy text with , and \ and \" etc"]
그러나 실제 출력에는 추가 따옴표가 포함되어 있습니다.
Unquoted string,"Cr@zy text with , and \ and "" etc" Quoted string,"""Cr@zy text with , and \ and \"" etc"""
추가 따옴표 이해
따옴표 붙은 문자열의 추가 따옴표는 큰 따옴표를 두 개의 큰 따옴표로 이스케이프해야 하는 CSV 표준을 따른 결과입니다. 인용 부호. 이는 데이터 내의 실제 큰따옴표와 레코드 구분에 사용된 큰따옴표를 구별하는 데 필요합니다.
해결책
코드는 큰따옴표 탈출에 대해 걱정할 필요가 없습니다. CSV 리더는 자동으로 이스케이프를 해제합니다. 따라서 해결책은 인용된 문자열을 작성할 때 여분의 큰따옴표를 제거하는 것입니다.
수정된 코드
<code class="go">for _, record := range [][]string{ {"Unquoted string", "Cr@zy text with , and \ and \" etc"}, {"Quoted string", "Cr@zy text with , and \ and \" etc"}, } { record[1] = fmt.Sprintf("%q", record[1][1:len(record[1])-1]) w.Write(record) }</code>
업데이트된 출력
Unquoted string,Cr@zy text with , and \ and " etc Quoted string,"Cr@zy text with , and \ and \" etc"
이번 변경으로 이제 따옴표 붙은 문자열이 올바르게 이스케이프되고 추가 따옴표가 제거됩니다.
위 내용은 `encoding/csv`를 사용하여 CSV 파일에 따옴표 붙은 문자열을 쓸 때 Go 코드에서 추가 따옴표가 생성되는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!