Append String array using TextInfo.ListSeparator

180 Views Asked by At

I am reading all lines from a CSV file. I wanted to get the specific line number of the and place it into an array by using Split. This is my current way:

var resultPath = GetFilePath();
String[] lines = null;
lines = System.IO.File.ReadAllLines(resultPath);
string[] values = lines[result.LineNumber - 1].Split(','); //Get specific line number and place in an array

Now, instead of this, I wanted to use TextInfo.LineSeparator.

Here is how I attempt:

var resultPath = GetFilePath();
String[] lines = null;
lines = System.IO.File.ReadAllLines(resultPath);
var listSeparator = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator;
string[] values = ??? //I am stuck here...

How do I resolve this?

2

There are 2 best solutions below

0
On BEST ANSWER
var resultPath = GetFilePath();
String[] lines = null;
lines = System.IO.File.ReadAllLines(resultPath);
var listSeparator = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator;
string[] values = lines[result.LineNumber - 1].Split(new String[] { listSeparator }, StringSplitOptions.None); 

Works Fine Now....

2
On

Base on your current way:

var resultPath = GetFilePath();
String[] lines = null;
lines = System.IO.File.ReadAllLines(resultPath);
var listSeparator = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator;
string[] values = lines[result.LineNumber - 1].Split(listSeparator); //you can change it directly with your old separator ','