Check out example codes for "c sharp split string". 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
listStrLineElements = line.Split(',').ToList();
Code Example 3
//Split using a string delimiter instead of a char
data.Split(new string[] { "xx" }, StringSplitOptions.None);
Learn ReactJs, React Native from akashmittal.com