공백을 구분자로 한 분리.
string phrase = "brown red yellow gray black";
string[] colors = phrase.Split(' ');
foreach (var color in colors)
{
System.Console.WriteLine($"<{color}>");
}
char[] delimiterChars = { ' ', ',', '.', ':', '\t' };
string text = "white\tred :,yellow gray black";
System.Console.WriteLine($"원본 텍스트: '{text}'");
string[] words = text.Split(delimiterChars);
foreach (var word in words)
{
System.Console.WriteLine($"<{word}>");
}