本文介绍了读取文本文件的所有段落,并将其存储在C#中的不同字符串中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想制作一个打开文本文件并从文件中读取所有段落的软件
并将所有段落存储在不同的变量中.在我的程序段中,计数固定为3.

I want to make a software that opens a text file and read all paragraphs from the file
and store all paragraphs in different variables. In my program paragraph are 3 fixed in count.

thanks.

推荐答案

string filePath = @"c:\temp\doc.txt";
System.IO.FileStream fs = System.IO.File.OpenRead(filePath);
byte[] binaryData = new byte[fs.Length];
fs.Read(binaryData, 0, binaryData.Length);
string text = System.Text.Encoding.ASCII.GetString(binaryData);
string[] paragraphs = text.Split('\r').Select(m => m.Trim('\n')).ToArray();


这篇关于读取文本文件的所有段落,并将其存储在C#中的不同字符串中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 16:23