一種char分隔符 string phrase = "The quick brown fox jumps over the lazy dog."; string[] words = phrase.Split(' '); foreach (var word in words) { System.Con ...
一種char分隔符
string phrase = "The quick brown fox jumps over the lazy dog."; string[] words = phrase.Split(' '); foreach (var word in words) { System.Console.WriteLine($"<{word}>"); }
分隔之後的結果,去掉多餘的空格
// StringSplitOptions.RemoveEmptyEntries移除多餘的空格 string phrase = "The quick brown fox jumps over the lazy dog."; string[] words = phrase.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); foreach (var word in words) { System.Console.WriteLine($"<{word}>"); }
多種char分隔符
// 使用多個分隔符 char[] delimiterChars = { ' ', ',', '.', ':', '\t' }; string text = "one\ttwo three:four,five six seven"; System.Console.WriteLine($"Original text: '{text}'"); // public String[] Split(params char[] separator); string[] words = text.Split(delimiterChars); System.Console.WriteLine($"{words.Length} words in text:"); foreach (var word in words) { System.Console.WriteLine($"<{word}>"); }
多種string分隔符
string[] separatingStrings = { "<<", "..." }; string text = "one<<two......three<four"; System.Console.WriteLine($"Original text: '{text}'"); //public String[] Split(String[] separator, StringSplitOptions options); string[] words = text.Split(separatingStrings, System.StringSplitOptions.RemoveEmptyEntries); System.Console.WriteLine($"{words.Length} substrings in text:"); foreach (var word in words) { System.Console.WriteLine(word); }