PROGRAM
===================================
===================================
class Program { static void Main() { string s = "Website Design, Website Development, E-Commerce Website"; // Split string on spaces. // ... This will separate all the words. string[] words = s.Split(','); foreach (string word in words) { Console.WriteLine(word); } } }
======================================
OUTPUT
Website Design
Website Development
E-Commerce Website
Website Development
E-Commerce Website
No comments:
Post a Comment