C #: การวนซ้ำตามบรรทัดของสตริงหลายบรรทัด


101

วิธีที่ดีในการวนซ้ำแต่ละบรรทัดของสตริงหลายบรรทัดโดยไม่ต้องใช้หน่วยความจำมากขึ้น (ตัวอย่างเช่นโดยไม่ต้องแยกออกเป็นอาร์เรย์)

คำตอบ:


160

ฉันขอแนะนำให้ใช้การรวมกันของStringReaderและLineReaderคลาสของฉันซึ่งเป็นส่วนหนึ่งของMiscUtilแต่ยังมีอยู่ในคำตอบ StackOverflow นี้ - คุณสามารถคัดลอกคลาสนั้นไปยังโครงการยูทิลิตี้ของคุณเองได้อย่างง่ายดาย คุณจะใช้สิ่งนี้:

string text = @"First line
second line
third line";

foreach (string line in new LineReader(() => new StringReader(text)))
{
    Console.WriteLine(line);
}

วนลูปกับทุกสายในร่างกายของข้อมูลสตริง (ไม่ว่าจะเป็นไฟล์หรืออะไรก็ตาม) เป็นเพื่อร่วมกันว่ามันไม่ควรจะต้องมีรหัสโทรไปได้รับการทดสอบสำหรับ null ฯลฯ :) ต้องบอกว่าถ้าคุณไม่ต้องการที่จะทำ manual loop นี่คือรูปแบบที่ฉันชอบมากกว่า Fredrik's:

using (StringReader reader = new StringReader(input))
{
    string line;
    while ((line = reader.ReadLine()) != null)
    {
        // Do something with the line
    }
}

ด้วยวิธีนี้คุณจะต้องทดสอบความว่างเปล่าเพียงครั้งเดียวและคุณไม่ต้องคิดเกี่ยวกับการวนซ้ำ do / while (ซึ่งด้วยเหตุผลบางประการทำให้ฉันต้องใช้ความพยายามในการอ่านมากกว่าการวนซ้ำแบบตรงเสมอ)


75

คุณสามารถใช้ a StringReaderเพื่ออ่านทีละบรรทัด:

using (StringReader reader = new StringReader(input))
{
    string line = string.Empty;
    do
    {
        line = reader.ReadLine();
        if (line != null)
        {
            // do something with the line
        }

    } while (line != null);
}

1
เยี่ยมมาก; +1; สิ่งนี้ช่วย; แต่ฉันแค่อยากจะเพิ่มว่าอันที่จริงไม่จำเป็นต้องใช้บล็อก "ใช้" เนื่องจากไม่มีทรัพยากรใด ๆ ที่จะปิดในกรณีนี้ ดูข้อสังเกตในบทความ StringReader ที่ docs.microsoft.com
RD Alkire

12

ฉันรู้ว่าได้รับคำตอบแล้ว แต่ฉันต้องการเพิ่มคำตอบของตัวเอง:

using (var reader = new StringReader(multiLineString))
{
    for (string line = reader.ReadLine(); line != null; line = reader.ReadLine())
    {
        // Do something with the line
    }
}

7

จาก MSDN สำหรับStringReader

    string textReaderText = "TextReader is the abstract base " +
        "class of StreamReader and StringReader, which read " +
        "characters from streams and strings, respectively.\n\n" +

        "Create an instance of TextReader to open a text file " +
        "for reading a specified range of characters, or to " +
        "create a reader based on an existing stream.\n\n" +

        "You can also use an instance of TextReader to read " +
        "text from a custom backing store using the same " +
        "APIs you would use for a string or a stream.\n\n";

    Console.WriteLine("Original text:\n\n{0}", textReaderText);

    // From textReaderText, create a continuous paragraph 
    // with two spaces between each sentence.
    string aLine, aParagraph = null;
    StringReader strReader = new StringReader(textReaderText);
    while(true)
    {
        aLine = strReader.ReadLine();
        if(aLine != null)
        {
            aParagraph = aParagraph + aLine + " ";
        }
        else
        {
            aParagraph = aParagraph + "\n";
            break;
        }
    }
    Console.WriteLine("Modified text:\n\n{0}", aParagraph);

2

นี่คือข้อมูลโค้ดด่วนที่จะค้นหาบรรทัดแรกที่ไม่ว่างในสตริง:

string line1;
while (
    ((line1 = sr.ReadLine()) != null) &&
    ((line1 = line1.Trim()).Length == 0)
)
{ /* Do nothing - just trying to find first non-empty line*/ }

if(line1 == null){ /* Error - no non-empty lines in string */ }

2

หากต้องการอัปเดตคำถามโบราณสำหรับ. NET 4 ตอนนี้มีวิธีที่ดีกว่ามาก:

var lines = File.ReadAllLines(filename);

foreach (string line in lines)
{
    Console.WriteLine(line);
}

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