このコード スニペットの目標は、データを 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"""
余分な引用符について
引用符で囲まれた文字列内の余分な引用符は、二重引用符を 2 つの double としてエスケープする必要がある 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 中国語 Web サイトの他の関連記事を参照してください。