Sub string in C# [closed]

Do you means split ?

string[] splitted_word = send.Split(' ');
foreach (string x in splitted_word)
        {
            Console.WriteLine(x);
        }

Leave a Comment