Contact: aviboots(AT)netvision.net.il
40,003 questions
51,950 answers
573 users
using System; class Program { static void Main() { string str = "CullenArthurCora"; string[] words = str.Split('r'); foreach (string word in words) { Console.WriteLine(word); } } } /* run: CullenA thu Co a */