Check out example codes for "parse strings into words C#". It will help you in understanding the concepts better.
Code Example 1
// To split a string use 'Split()', you can choose where to split
string text = "Hello World!"
string[] textSplit = text.Split(" ");
// Output:
// ["Hello", "World!"]
Code Example 2
string text = "Hello World!"
string[] textSplit = text.Split();
Code Example 3
listStrLineElements = line.Split(',').ToList();
Learn ReactJs, React Native from akashmittal.com