C # : 여러 줄 문자열을 통해 반복


100

더 많은 메모리를 사용하지 않고 (예를 들어 배열로 분할하지 않고) 여러 줄 문자열의 각 줄을 반복하는 좋은 방법은 무엇입니까?

답변:


158

MiscUtil의 일부 이지만 이 StackOverflow 답변 에서도 사용할 수 있는와StringReaderLineReader클래스 의 조합을 사용하는 것이 좋습니다. 해당 클래스를 자신의 유틸리티 프로젝트에 쉽게 복사 할 수 있습니다. 다음과 같이 사용합니다.

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 루프보다 읽는 데 더 많은 노력이 필요합니다).


74

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; 이것은 도움이되었다. 하지만이 경우 닫을 리소스가 없기 때문에 실제로 "using"블록을 사용할 필요가 없다는 점을 추가하고 싶습니다. docs.microsoft.com
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.