web-dev-qa-db-ja.com

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

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

85
flamey

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

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

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

文字列データの本文のすべての行をループする(ファイルであるかどうかに関係なく)ため、呼び出しコードでnullなどをテストする必要はありません:)とはいえ、 doは手動ループを実行したいのですが、これは私がFredrikよりも好んで使う形式です:

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

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

141
Jon Skeet

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);
}
70
Fredrik Mörk

StringReader のMSDNから

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

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

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

文字列の最初の空でない行を見つける簡単なコードスニペットを次に示します。

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
palswim

.NET 4のこの古代の質問を更新するために、今ではもっとすてきな方法があります。

var lines = File.ReadAllLines(filename);

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