separetd string using delimmiter in c# code example
Example 1: split string in c#
string phrase = "The quick brown fox jumps over the lazy dog.";
string[] words = phrase.Split(' ');
foreach (var word in words)
{
System.Console.WriteLine($"<{word}>");
}
Example 2: parse strings into words C#
string text = "Hello World!"
string[] textSplit = text.Split();