Answers for "split \ in string c#"

C#
32

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!"]
Posted by: Guest on February-22-2020
-2

string split c#

char[] delimiterChars = { ' ', ',', '.', ':', 't' };

string text = "onettwo three:four,five six seven";
System.Console.WriteLine($"Original text: '{text}'");

string[] words = text.Split(delimiterChars);
System.Console.WriteLine($"{words.Length} words in text:");

foreach (var word in words)
{
    System.Console.WriteLine($"<{word}>");
}
Posted by: Guest on January-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language