此 C# 代码有效地将 CSV 列分成单独的数组。让我们对其进行改进,使其更加清晰和稳健。
改进了 CSV 列分隔的 C# 代码:
此版本处理潜在的错误,例如缺失值或不正确的分隔符,并允许可变数量的列:
<code class="language-csharp">using System; using System.Collections.Generic; using System.IO; using System.Linq; public class CsvSplitter { public static List<List<string>> SeparateCsvColumns(string filePath, char delimiter = ';') { List<List<string>> columns = new List<List<string>>(); try { using (var reader = new StreamReader(filePath)) { string line; bool firstLine = true; while ((line = reader.ReadLine()) != null) { string[] values = line.Split(delimiter); if (firstLine) { // Initialize lists for each column on the first line for (int i = 0; i < values.Length; i++) { columns.Add(new List<string>()); } firstLine = false; } // Add values to corresponding columns. Handles lines with fewer values than the header. for (int i = 0; i < Math.Min(values.Length, columns.Count); i++) { columns[i].Add(values[i].Trim()); //Trim whitespace } } } } catch (FileNotFoundException) { Console.WriteLine($"Error: File not found at {filePath}"); return null; // Or throw a more specific exception } catch (Exception ex) { Console.WriteLine($"An error occurred: {ex.Message}"); return null; // Or throw a more specific exception } return columns; } public static void Main(string[] args) { string filePath = @"C:\test.csv"; //Replace with your file path List<List<string>> separatedColumns = SeparateCsvColumns(filePath); if (separatedColumns != null) { for (int i = 0; i < separatedColumns.Count; i++) { Console.WriteLine($"Column {i + 1}:"); foreach (string value in separatedColumns[i]) { Console.WriteLine(value); } Console.WriteLine(); } } } }</code>
改进后的代码:
try-catch
块来处理 FileNotFoundException
和其他潜在的异常。Trim()
删除每个值的前导/尾随空格。请记住将 "C:test.csv"
替换为 CSV 文件的实际路径。 这个强大的解决方案提供了一种更可靠、更通用的方法来在 C# 中处理 CSV 数据。
以上是如何将CSV列分为C#中的单个数组?的详细内容。更多信息请关注PHP中文网其他相关文章!