导出 CSV 文件 C#4 时处理引号内的逗号。任何建议

发布于 2024-10-30 21:51:38 字数 634 浏览 0 评论 0原文

大家好 我正在读取 csv 文件,当字段内有逗号时,我遇到了一个问题

这一切都有效,直到我在逗号内得到一个逗号 所有字段周围都会有“”。

             string delimiter=",";
         using (var sr = new StreamReader(fileName))
        {
                sr.ReadLine(); //skip headers
                while (!sr.EndOfStream)
                {
                   var readline = sr.ReadLine();
                   if (readline == null) continue;
                   var fields = readline.Split  (delimiter.ToCharArray());  
                 }
            }if I CANNOT split because of commas within quotation . How can I recode it?

我无法使用开源或第三方库。

有什么建议吗?

Hi all
I am reading a csv file and I have encounted a problem when there is a comma inside the field

It all works till I get a comma within a comma
all the fields will have "" around it.

             string delimiter=",";
         using (var sr = new StreamReader(fileName))
        {
                sr.ReadLine(); //skip headers
                while (!sr.EndOfStream)
                {
                   var readline = sr.ReadLine();
                   if (readline == null) continue;
                   var fields = readline.Split  (delimiter.ToCharArray());  
                 }
            }if I CANNOT split because of commas within quotation . How can I recode it?

I cannot use open source or thirdy party libraries.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我乃一代侩神 2024-11-06 21:51:38

使用 TextFieldParser 类。

MSDN上的描述是:

提供解析结构化文本文件的方法和属性。

它位于 Microsoft.VisualBasic.FileIO 命名空间中,因此不是第三方也不是开源的。

它是一个托管类,因此您只需添加引用、导入命名空间并使用即可。

用法示例:

using(var fileReader = New TextFieldParser("C:\ParserText.txt"))
{
    fileReader.TextFieldType = FieldType.Delimited;
    fileReader.SetDelimiters(",");
    ...
}

Use the TextFieldParser class.

The description on MSDN is:

Provides methods and properties for parsing structured text files.

It lives in the Microsoft.VisualBasic.FileIO namespace, so not third party nor open source.

It is a managed class, so you can simply add a reference, import the namespace and use.

Example usage:

using(var fileReader = New TextFieldParser("C:\ParserText.txt"))
{
    fileReader.TextFieldType = FieldType.Delimited;
    fileReader.SetDelimiters(",");
    ...
}
聽兲甴掵 2024-11-06 21:51:38

由于第 3 方库已退出,因此有一些选择(可能还有其他选择):

  • 使用 ODBC自己编写一个报价感知的 CSV 阅读器
  • - 请参阅最后一页 此处

Since 3rd party libraries are out, a few choices (there are probably others):

  • write a quote-aware CSV reader yourself
  • use ODBC - see the last page here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文