C# - Split()으로 문자열 자르기, 나누기

string.Split()으로 문자열을 특정 구분자(delimiter)로 분리하여 문자열 배열로 변환하는 방법을 소개합니다.

예를 들어, Split()은 아래 input과 같은 문자열을 ,를 구분자로 분리하여 output 배열과 같이 여러 문자열로 분리할 수 있습니다.

input: "Hello,World,C#"
output: ["Hello", "World", "C#"]

1. Split(delimiter)으로 문자열 분리

string.Split(delimiter)은 문자열에서 구분자(delimiter)로 문자열을 분리하여 배열로 리턴합니다.

아래 코드는 구분자 " "","로 분리하여 두개의 결과를 출력하는 예제입니다. 구분자로 분리했을 때, 문자열에 공백이 포함될 수 있습니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string str = "Hello, world, C#";

            string[] result1 = str.Split(" ");
            string[] result2 = str.Split(",");

            Console.WriteLine("result1:");
            foreach(String s in result1) {
                Console.WriteLine(s);
            }

            Console.WriteLine("result2:");
            foreach(String s in result2) {
                Console.WriteLine(s);
            }
        }
    }
}

Output:

result1:
Hello,
world,
C#
result2:
Hello
 world
 C#

만약 분리된 문자열에 공백을 제거하고 싶다면, 사용할 때 Trim()으로 앞 뒤 공백을 제거할 수 있습니다.

Console.WriteLine("result1:");
foreach(String s in result1) {
    Console.WriteLine(s.Trim());
}

Console.WriteLine("result2:");
foreach(String s in result2) {
    Console.WriteLine(s.Trim());
}

Output:

result1:
Hello,
world,
C#
result2:
Hello
world
C#

2. Split(delimiter, count)로 최대 문자열 개수 제한

Split(delimiter, count)은 구분자로 문자열을 분리하는데, 분리된 문자열 개수를 최대 count까지로 제한하는 설정입니다.

아래 예제에서

  • Split(" ", 1)는 분리된 문자열 개수를 1로 제한하기 때문에, 아무것도 분리하지 못하여 배열에 전체 문자열 1개만 포함됩니다.
  • Split(",", 3)는 분리된 문자열 개수를 3으로 제한하기 때문에, 문자열을 ,로 2번 분리하여 생성된 3개의 문자열을 배열에 추가하고 리턴합니다.
using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string str = "Hello, world, C#, learning";

            string[] result1 = str.Split(" ", 1);
            string[] result2 = str.Split(",", 3);

            Console.WriteLine("result1:");
            foreach(String s in result1) {
                Console.WriteLine(s);
            }

            Console.WriteLine("result2:");
            foreach(String s in result2) {
                Console.WriteLine(s);
            }
        }
    }
}

Output:

result1:
Hello, world, C#, learning
result2:
Hello
 world
 C#, learning

3. 여러 delimiter로 문자열 나누기

Split(delimiters, option)는 구분자 배열을 인자로 받으며, 배열에 있는 모든 구분자로 문자열을 분리합니다.

아래 예제에서 separators 배열에 있는 3개의 구분자로 문자열을 분리하여 배열로 리턴합니다. StringSplitOptions.None 옵션은 분리된 문자열에 빈 문자열이 포함될 수 있다는 옵션입니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string str = "Hello, world. C#! learning";
            string[] separators = {",", ".", "!"};

            string[] result = str.Split(separators, StringSplitOptions.None);

            Console.WriteLine("result:");
            foreach(String s in result) {
                Console.WriteLine(s);
            }
        }
    }
}

Output:

result:
Hello
 world
 C#
 learning

4. 여러 delimiter로 문자열 나누기 + 최대 문자열 개수 제한

Split(delimiters, count, option)은 문자열을 delimiters 배열로 분리하는데, 분리된 문자열의 개수가 최대 count 개수로 제한하는 것입니다. 동작은 위에서 설명한 Split(delimiter, count)와 동일합니다.

using System;

namespace Example {
    public class Program {
        public static void Main(string[] args) {

            string str = "Hello, world. C#! learning";
            string[] separators = {",", ".", "!"};

            string[] result = str.Split(separators, 3, StringSplitOptions.None);

            Console.WriteLine("result:");
            foreach(String s in result) {
                Console.WriteLine(s);
            }
        }
    }
}

Output:

result:
Hello
 world
 C#
 learning
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha