https://learn.microsoft.com/ko-kr/dotnet/csharp/how-to/parse-strings-using-split
char[] delimiterChars = { ' ', ',', '.', ':', '\t' };
string text = "one\ttwo three:four,five six seven";
System.Console.WriteLine($"Original text: '{text}'");
string[] words = text.Split(delimiterChars);
System.Console.WriteLine($"{words.Length} words in text:");
foreach (var word in words)
{
System.Console.WriteLine($"<{word}>");
}
샘플 코드는 위와 같이 char array를 넣어서 사용을 한다.
하나의 구분자를 가지고 나눌 경우에는 아래와 같이 하면 편하게 이용할 수 있다.
string text = "one\ttwo three:four,five six seven";
System.Console.WriteLine($"Original text: '{text}'");
string[] words = text.Split(new char[] { '.' });
System.Console.WriteLine($"{words.Length} words in text:");
foreach (var word in words)
{
System.Console.WriteLine($"<{word}>");
}
string[] words = text.Split(new char[] { '.' });
위와 같이 new로 생성을 해서 하나의 구분자를 이용하는 것이다.
'.NET' 카테고리의 다른 글
C#에서 네트워크 드라이브(Network Drive) 연결 방법 (0) | 2023.05.24 |
---|---|
Team Foundation Server 버전 제어" 경고 메시지 제거 방법 (0) | 2023.04.20 |
C# 구조체 바이너리 파일 읽기 (0) | 2022.08.10 |
Codejock RibbonBar 예제 및 CXTPControlEdit spin message (0) | 2022.07.15 |
Telerik GridViewSpreadExport 이용 방법 (0) | 2022.06.27 |