วิธีการแยก () สตริงที่คั่นด้วยรายการ <String>


139

ฉันมีรหัสนี้:

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

แต่คิดว่าฉันน่าจะไปกับ List แทน แต่รหัสนี้:

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

... ให้ฉัน " ไม่สามารถแปลงชนิด 'string []' เป็น 'System.Collections.Generic.List' "

คำตอบ:


321

string.Split()ส่งกลับอาร์เรย์ - คุณสามารถแปลงเป็นรายการโดยใช้ToList():

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

โปรดทราบว่าคุณต้องนำเข้าSystem.Linqเพื่อเข้าถึง.ToList()ฟังก์ชั่น


65
อาจจะพูดถึงที่นี่ว่าคุณจะต้องใช้ namespace System.Linq
ดร. Cogent

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

62

ทั้งใช้:

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

หรือจาก LINQ:

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

หรือเปลี่ยนรหัสของคุณที่จะไม่พึ่งพาการใช้งานเฉพาะ:

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

11

รวมถึงการใช้เนมสเปซ System.Linq

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

คุณสามารถใช้มันได้อย่างง่ายดายสำหรับการวนซ้ำผ่านแต่ละรายการ

foreach(string str in stringList)
{

}

String.Split() ส่งคืนอาร์เรย์ดังนั้นแปลงเป็นรายการโดยใช้ ToList()


6

เพียงแค่คุณสามารถใช้กับ using System.Linq;

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


3

นี่จะอ่านไฟล์ csv และมีตัวแยกบรรทัด csv ที่จัดการเครื่องหมายคำพูดคู่และสามารถอ่านได้แม้ว่า excel เปิดอยู่

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

ใช้AddRangeเพื่อผ่านstring[]และรับรายการสตริง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.