using System; class MainClass { public static void Main() { string str = "while if for, public class do."; char[] seps = {' ', '.', ',' }; // Split the string into parts. string[] parts = str.Split(seps); Console.WriteLine("Pieces from split: "); for(int i=0; i < parts.Length; i++) Console.WriteLine(parts[i]); } }
Pieces from split: while if for public class do
5.19.String Split Join | ||||
5.19.1. | Joining strings | |||
5.19.2. | Splitting strings by | | |||
5.19.3. | Split strings by three tokens | |||
5.19.4. | String joins | |||
5.19.5. | Tokenize strings | |||
5.19.6. | String Split | |||
5.19.7. | Split string with \\ | |||
5.19.8. | Sample for String.ToCharArray(Int32, Int32) |