[C#] 문자열 배열 분할 Split (char 분할, string 분할, StringSplitOptions)
단일 char 구분자로 문자열 분할 string words = "123,456,789"; string[] split = words.Split(new char[] {','}); foreach(string word in split) System.Console.WriteLine(word); , 를 기준으로 문자열 분할됨. 복수 char 구분자로 문자열 분할 string words = "123,456,789.abc.def.ghi"; string[] split = words.Split(new char[] { ',', '.' }); foreach (string word in split) System.Console.WriteLine(word); , 과 . 를 기준으로 문자열 분할됨. 분할 배열 개수 지정 string..
[C#] 매개변수 배열 (params)
class Program { static void Main(string[] args) { Combine("one"); Combine("one", "two"); Combine("one", "two", "three"); Combine("one", "two", "three", "four"); Combine("one", "two", "three", "four", "five"); Combine("one", "two", "three", "four", "five", "six"); } static void Combine(string arg1, params string[] args) { System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append($..