c# spilt string code example
Example 1: how consider the first caracter in Split c#
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
Example 2: 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 3: how to split a string with strings in c#
string[] separatingStrings = { "<<", "..." };
string text = "one<<two......three<four";
System.Console.WriteLine($"Original text: '{text}'");
string[] words = text.Split(separatingStrings, System.StringSplitOptions.RemoveEmptyEntries);
System.Console.WriteLine($"{words.Length} substrings in text:");
foreach (var word in words)
{
System.Console.WriteLine(word);
}