多くのメモリを使用せずに(たとえば、配列に分割せずに)複数行の文字列の各行をループする良い方法は何ですか?
質問する
124165 次
7 に答える
170
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 ループよりも読むのに時間がかかります)。
于 2009-09-30T19:41:00.833 に答える
82
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);
}
于 2009-09-30T19:36:36.770 に答える
7
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);
于 2009-09-30T19:37:04.967 に答える
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 */ }
于 2010-10-11T22:06:32.577 に答える