C#:複数行文字列の行をループする


100

より多くのメモリを使用せずに(たとえば、配列に分割せずに)複数行の文字列の各行をループする良い方法は何ですか?

回答:


158

MiscUtilの一部であるが、このStackOverflow回答でも利用できるStringReaderと私のLineReaderクラスの組み合わせを使用することをお勧めします。そのクラスだけを独自のユーティリティプロジェクトに簡単にコピーできます。次のように使用します。

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

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

それがnullなどをテストするために呼び出すコードを必要としないことを共通して(つまり、ファイルまたは任意のかどうか)は、文字列データの体のすべての行をオーバーループ:)ことを言って、あなたがいる場合やりたいです手動ループ、これは私がFredrikよりも一般的に好む形式です。

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

この方法では、null値を1回テストするだけでよく、do / whileループについて考える必要もありません(何らかの理由で、まっすぐなwhileループよりも常に読むのに多くの労力が必要になります)。


74

a StringReaderを使用して、一度に1行ずつ読み取ることができます。

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; これは助けになりました。この場合、閉じるリソースがないため、「using」ブロックを実際に使用する必要がないことを追加します。docs.microsoft.comのStringReader記事の備考を
RD Alkire

10

私はこれが答えられたことを知っていますが、私は自分の答えを追加したいと思います:

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

0

String.Splitメソッドを使用してみてください。

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

foreach (string line in text.Split('\n'))
{
    // do something
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.