c# split a 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: c sharp split string

// To split a string use 'Split()', you can choose where to split
string text = "Hello World!"
string[] textSplit = text.Split(" ");
// Output:
// ["Hello", "World!"]

Example 3: 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 4: split using string c#

//Split using a string delimiter instead of a char
data.Split(new string[] { "xx" }, StringSplitOptions.None);

Example 5: c# split string

string sentence = "Hello Beautiful World";
string[] words = sentence.Split(' ');

foreach (string word in words) {
    print(word);
}

Tags:

Php Example