이 C# 코드는 CSV 열을 개별 배열로 효율적으로 분리합니다. 명확성과 견고성을 위해 그것을 세분화합시다.
CSV 열 분리를위한 개선 된 C# 코드 : 이 버전은 결 측값 또는 잘못된 구분자와 같은 잠재적 오류를 처리하고 변수 수의 열을 허용합니다.
이 개선 된 코드 :
<p>
여러 열을 처리합니다. <strong> 첫 번째 줄을 기반으로 각 열에 대한 목록을 동적으로 생성합니다.
오류 처리 : </strong> </p> 및 기타 잠재적 예외가 포함되어 있습니다.
<p> 공백 트리밍 : </p>를 사용하여 각 값에서 선두/후행 공백을 제거합니다.
는 일관되지 않은 행 길이를 처리합니다. <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><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></pre><div class="contentsignin">로그인 후 복사</div></div> 일부 행은 다른 행보다 값이 적은 CSV 파일을 우아하게 처리합니다.
<p> 명확한 출력 : </p>는 출력을보다 구성적이고 읽기 쉬운 형식으로 제시합니다.
Delimiter 매개 변수를 사용합니다. <ul>는 세미콜론이 아닌 경우 Delimiter (예 : ',', ';', '|')를 지정할 수 있습니다.
<li>
<strong>를 CSV 파일의 실제 경로로 바꾸는 것을 잊지 마십시오. 이 강력한 솔루션은 C#에서 CSV 데이터를 처리하는 데보다 신뢰할 수 있고 다재다능한 접근 방식을 제공합니다.</strong>
</li>
</ul>
위 내용은 C#에서 CSV 열을 개별 배열로 어떻게 분리할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!