답변:
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
}
}
이렇게하면 nullity를 한 번만 테스트하면되고 do / while 루프에 대해 생각할 필요가 없습니다 (어떤 이유로 인해 항상 직선 while 루프보다 읽는 데 더 많은 노력이 필요합니다).
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);
}
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);
String.Split 메서드를 사용해보십시오.
string text = @"First line
second line
third line";
foreach (string line in text.Split('\n'))
{
// do something
}