Check out example codes for "how consider the first caracter in Split c#". It will help you in understanding the concepts better.
Code Example 1
Considerar somente a primeira string especificada para realizar o split
You can specify how many substrings to return using string.Split:
string myString = "101.a.b.c.d"
var pieces = myString.Split(new[] { '.' }, 2);
Returns:
101
a.b.c.d
Learn ReactJs, React Native from akashmittal.com