Contact: aviboots(AT)netvision.net.il
39,994 questions
51,939 answers
573 users
using System; class Program { static void Main() { string str = "CullenAurthurCoreEcho"; char[] array = { 'A', 'r' }; string[] words = str.Split(array); foreach (string word in words) { Console.WriteLine(word); } } } /* run: Cullen u thu Co eEcho */