>백엔드 개발 >C++ >C#에서 CSV 열을 개별 배열로 어떻게 분리할 수 있나요?

C#에서 CSV 열을 개별 배열로 어떻게 분리할 수 있나요?

Patricia Arquette
Patricia Arquette원래의
2025-01-26 06:46:09440검색

이 C# 코드는 CSV 열을 개별 배열로 효율적으로 분리합니다. 명확성과 견고성을 위해 그것을 세분화합시다.

CSV 열 분리를위한 개선 된 C# 코드 : How Can I Separate CSV Columns into Individual Arrays in C#?
이 버전은 결 측값 또는 잘못된 구분자와 같은 잠재적 오류를 처리하고 변수 수의 열을 허용합니다.

이 개선 된 코드 : <p> 여러 열을 처리합니다. <strong> 첫 번째 줄을 기반으로 각 열에 대한 목록을 동적으로 생성합니다. 오류 처리 : </strong> </p> 및 기타 잠재적 예외가 포함되어 있습니다. <p> 공백 트리밍 : </p>를 사용하여 각 값에서 선두/후행 공백을 제거합니다. 는 일관되지 않은 행 길이를 처리합니다. <pre class="brush:php;toolbar:false">&lt;code class=&quot;language-csharp&quot;&gt;using System; using System.Collections.Generic; using System.IO; using System.Linq; public class CsvSplitter { public static List&lt;List&lt;string&gt;&gt; SeparateCsvColumns(string filePath, char delimiter = ';') { List&lt;List&lt;string&gt;&gt; columns = new List&lt;List&lt;string&gt;&gt;(); 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 &lt; values.Length; i++) { columns.Add(new List&lt;string&gt;()); } firstLine = false; } // Add values to corresponding columns. Handles lines with fewer values than the header. for (int i = 0; i &lt; Math.Min(values.Length, columns.Count); i++) { columns[i].Add(values[i].Trim()); //Trim whitespace } } } } catch (FileNotFoundException) { Console.WriteLine($&quot;Error: File not found at {filePath}&quot;); return null; // Or throw a more specific exception } catch (Exception ex) { Console.WriteLine($&quot;An error occurred: {ex.Message}&quot;); return null; // Or throw a more specific exception } return columns; } public static void Main(string[] args) { string filePath = @&quot;C:\test.csv&quot;; //Replace with your file path List&lt;List&lt;string&gt;&gt; separatedColumns = SeparateCsvColumns(filePath); if (separatedColumns != null) { for (int i = 0; i &lt; separatedColumns.Count; i++) { Console.WriteLine($&quot;Column {i + 1}:&quot;); foreach (string value in separatedColumns[i]) { Console.WriteLine(value); } Console.WriteLine(); } } } }&lt;/code&gt;</pre> 일부 행은 다른 행보다 값이 적은 CSV 파일을 우아하게 처리합니다. <p> 명확한 출력 : </p>는 출력을보다 구성적이고 읽기 쉬운 형식으로 제시합니다. Delimiter 매개 변수를 사용합니다. <ul>는 세미콜론이 아닌 경우 Delimiter (예 : ',', ';', '|')를 지정할 수 있습니다. <li> <strong>를 CSV 파일의 실제 경로로 바꾸는 것을 잊지 마십시오. 이 강력한 솔루션은 C#에서 CSV 데이터를 처리하는 데보다 신뢰할 수 있고 다재다능한 접근 방식을 제공합니다.</strong> </li> </ul>

위 내용은 C#에서 CSV 열을 개별 배열로 어떻게 분리할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.