J'ai eu ce code:
String[] lineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
lineElements = line.Split(',');
. . .
mais alors pensé que je devrais peut-être aller avec une liste à la place. Mais ce code:
List<String> listStrLineElements;
. . .
try
{
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
listStrLineElements = line.Split(',');
. . .
... me donne "Impossible de convertir implicitement le type 'chaîne []' en 'System.Collections.Generic.List'"
string.Split()
renvoie un tableau - vous pouvez le convertir en liste à l'aide de ToList()
:
listStrLineElements = line.Split(',').ToList();
Vous devez importer System.Linq pour accéder à la fonction .ToList ().
Soit utiliser:
List<string> list = new List<string>(array);
ou de LINQ:
List<string> list = array.ToList();
Ou modifiez votre code pour ne pas compter sur l'implémentation spécifique:
IList<string> list = array; // string[] implements IList<string>
Inclure en utilisant un espace de noms System.Linq
List<string> stringList = line.Split(',').ToList();
vous pouvez l'utiliser facilement pour parcourir chaque élément.
foreach(string str in stringList)
{
}
String.Split()
renvoie un tableau, convertissez-le donc en liste à l'aide de ToList()
Juste vous pouvez utiliser avec using System.Linq;
List<string> stringList = line.Split(',') // this is array
.ToList(); // this is a list which you can loop in all split string
essayez cette liste stringList = line.Split (','). ToList ();
Cela lira un fichier csv et il comprend un séparateur de ligne csv qui gère les guillemets doubles et peut lire même si Excel l’a ouvert.
public List<Dictionary<string, string>> LoadCsvAsDictionary(string path)
{
var result = new List<Dictionary<string, string>>();
var fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
System.IO.StreamReader file = new System.IO.StreamReader(fs);
string line;
int n = 0;
List<string> columns = null;
while ((line = file.ReadLine()) != null)
{
var values = SplitCsv(line);
if (n == 0)
{
columns = values;
}
else
{
var dict = new Dictionary<string, string>();
for (int i = 0; i < columns.Count; i++)
if (i < values.Count)
dict.Add(columns[i], values[i]);
result.Add(dict);
}
n++;
}
file.Close();
return result;
}
private List<string> SplitCsv(string csv)
{
var values = new List<string>();
int last = -1;
bool inQuotes = false;
int n = 0;
while (n < csv.Length)
{
switch (csv[n])
{
case '"':
inQuotes = !inQuotes;
break;
case ',':
if (!inQuotes)
{
values.Add(csv.Substring(last + 1, (n - last)).Trim(' ', ','));
last = n;
}
break;
}
n++;
}
if (last != csv.Length - 1)
values.Add(csv.Substring(last + 1).Trim());
return values;
}
string[] thisArray = myString.Split('/');//<string1/string2/string3/--->
List<string> myList = new List<string>(); //make a new string list
myList.AddRange(thisArray);
Utilisez AddRange
pour passer string[]
et obtenir une liste de chaînes.