using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = "C#, is a multi-paradigm: programming\t language. " +
"\nobject-oriented (class-based), and component-oriented...";
string[] sp = s.Split(new Char[] { ' ', ',', '.', ':', '\t', '\n', '(', ')', '-' });
foreach (string word in sp) {
if (word.Trim() != "")
Console.WriteLine(word);
}
}
}
}
/*
run:
C#
is
a
multi
paradigm
programming
language
object
oriented
class
based
and
component
oriented
*/