Home

Published

- 1 min read

how consider the first caracter in Split c#

img of how consider the first caracter in Split c#

The solution for this is noted below

how consider the first caracter in Split c#

Solution

   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

Try other methods by searching on the site. That is if this doesn’t work