Languages
[Edit]
EN

C# / .NET - string split

1 points
Created by:
Barmar
338

In C# / .NET it is possible to split string in following way.

1. Split by single character String.Split method example

string text = "John,Mary,Laura,Chris";
string[] array = text.Split(",");

foreach (string entry in array)
	Console.WriteLine(entry);

Output:

John
Mary
Laura
Chris

2. Split by string String.Split method example

string text = "John+++Mary+++Laura+++Chris";
string[] array = text.Split("+++");

foreach (string entry in array)
	Console.WriteLine(entry);

Output:

John
Mary
Laura
Chris

3. Split by array of chars String.Split method example

string text = "John+Mary,Laura+Chris";
string[] array = text.Split(new char[] { ',', '+' });

foreach (string entry in array)
	Console.WriteLine(entry);

Output:

John
Mary
Laura
Chris

4. Split by array of strings String.Split method example

string text = "John[+]Mary,Laura[+]Chris";
string[] array = text.Split(new string[] { ",", "[+]" }, StringSplitOptions.None);

foreach (string entry in array)
	Console.WriteLine(entry);

Output:

John
Mary
Laura
Chris

References

  1. String.Split Method - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join