วิธีที่ดีในการวนซ้ำแต่ละบรรทัดของสตริงหลายบรรทัดโดยไม่ต้องใช้หน่วยความจำมากขึ้น (ตัวอย่างเช่นโดยไม่ต้องแยกออกเป็นอาร์เรย์)
วิธีที่ดีในการวนซ้ำแต่ละบรรทัดของสตริงหลายบรรทัดโดยไม่ต้องใช้หน่วยความจำมากขึ้น (ตัวอย่างเช่นโดยไม่ต้องแยกออกเป็นอาร์เรย์)
คำตอบ:
ฉันขอแนะนำให้ใช้การรวมกันของStringReader
และLineReader
คลาสของฉันซึ่งเป็นส่วนหนึ่งของMiscUtilแต่ยังมีอยู่ในคำตอบ StackOverflow นี้ - คุณสามารถคัดลอกคลาสนั้นไปยังโครงการยูทิลิตี้ของคุณเองได้อย่างง่ายดาย คุณจะใช้สิ่งนี้:
string text = @"First line
second line
third line";
foreach (string line in new LineReader(() => new StringReader(text)))
{
Console.WriteLine(line);
}
วนลูปกับทุกสายในร่างกายของข้อมูลสตริง (ไม่ว่าจะเป็นไฟล์หรืออะไรก็ตาม) เป็นเพื่อร่วมกันว่ามันไม่ควรจะต้องมีรหัสโทรไปได้รับการทดสอบสำหรับ null ฯลฯ :) ต้องบอกว่าถ้าคุณไม่ต้องการที่จะทำ manual loop นี่คือรูปแบบที่ฉันชอบมากกว่า Fredrik's:
using (StringReader reader = new StringReader(input))
{
string line;
while ((line = reader.ReadLine()) != null)
{
// Do something with the line
}
}
ด้วยวิธีนี้คุณจะต้องทดสอบความว่างเปล่าเพียงครั้งเดียวและคุณไม่ต้องคิดเกี่ยวกับการวนซ้ำ do / 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);
}
ฉันรู้ว่าได้รับคำตอบแล้ว แต่ฉันต้องการเพิ่มคำตอบของตัวเอง:
using (var reader = new StringReader(multiLineString))
{
for (string line = reader.ReadLine(); line != null; line = reader.ReadLine())
{
// Do something with the line
}
}
จาก 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 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 */ }
หากต้องการอัปเดตคำถามโบราณสำหรับ. NET 4 ตอนนี้มีวิธีที่ดีกว่ามาก:
var lines = File.ReadAllLines(filename);
foreach (string line in lines)
{
Console.WriteLine(line);
}
ลองใช้วิธี String.Split:
string text = @"First line
second line
third line";
foreach (string line in text.Split('\n'))
{
// do something
}