Dealing with commas in a CSV file

后端 未结 27 2756
傲寒
傲寒 2020-11-21 06:53

I am looking for suggestions on how to handle a csv file that is being created, then uploaded by our customers, and that may have a comma in a value, like a company name.

27条回答
  •  野的像风
    2020-11-21 07:24

    You can use alternative "delimiters" like ";" or "|" but simplest might just be quoting which is supported by most (decent) CSV libraries and most decent spreadsheets.

    For more on CSV delimiters and a spec for a standard format for describing delimiters and quoting see this webpage

提交回复
热议问题