Answers for "c# string split one line"

C#
39

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
0

read all lines split C#

List<string[]> list = File.ReadLines("YourFile.txt")
                          .Select(r => r.TrimEnd('#'))
                          .Select(line => line.Split(','))
                          .ToList();
Posted by: Guest on November-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language