Come dividere () una stringa delimitata in un Elenco <String>


139

Ho avuto questo codice:

    String[] lineElements;       
    . . .
    try
    {
        using (StreamReader sr = new StreamReader("TestFile.txt"))
        {
            String line;
            while ((line = sr.ReadLine()) != null)
            {
                lineElements = line.Split(',');
                . . .

ma poi ho pensato che forse avrei dovuto andare con un elenco. Ma questo codice:

    List<String> listStrLineElements;
    . . .
    try
    {
        using (StreamReader sr = new StreamReader("TestFile.txt"))
        {
            String line;
            while ((line = sr.ReadLine()) != null)
            {
                listStrLineElements = line.Split(',');
. . .

... mi dà, " Impossibile convertire implicitamente il tipo 'string []' in 'System.Collections.Generic.List' "

Risposte:


321

string.Split()restituisce un array - puoi convertirlo in un elenco usando ToList():

listStrLineElements = line.Split(',').ToList();

Si noti che è necessario importare System.Linqper accedere alla .ToList()funzione.


65
Probabilmente dovresti menzionare qui che devi usare lo spazio dei nomi System.Linq
Dr. Cogent,

3
@sairfanlistStrLineElements = line?.Split(',').ToList();
Vinigas

62

Utilizzare entrambi:

List<string> list = new List<string>(array);

o da LINQ:

List<string> list = array.ToList();

Oppure modifica il codice per non fare affidamento sull'implementazione specifica:

IList<string> list = array; // string[] implements IList<string>

11

Includi usando lo spazio dei nomi System.Linq

List<string> stringList = line.Split(',').ToList();

puoi utilizzarlo con facilità per scorrere ogni elemento.

foreach(string str in stringList)
{

}

String.Split() restituisce un array, quindi convertilo in un elenco usando ToList()


6

Solo tu puoi usare con using System.Linq;

List<string> stringList = line.Split(',')     // this is array
 .ToList();     // this is a list which you can loop in all split string

6

Prova questa linea:

List<string> stringList = line.Split(',').ToList(); 

3

Questo leggerà un file CSV e include uno splitter di linea CSV che gestisce le virgolette doppie e può leggere anche se Excel ha aperto.

    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;
    }

2
string[] thisArray = myString.Split('/');//<string1/string2/string3/--->     
List<string> myList = new List<string>(); //make a new string list    
myList.AddRange(thisArray);    

Utilizzare AddRangeper passare string[]e ottenere un elenco di stringhe.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.