c#读取到的文件中怎么去掉特定字符
答案:2 悬赏:0 手机版
解决时间 2021-01-31 00:54
- 提问者网友:你给我的爱
- 2021-01-30 09:09
c#读取到的文件中怎么去掉特定字符
最佳答案
- 五星知识达人网友:爱难随人意
- 2021-01-30 10:02
string strsample = "特定字符";//这个地方就是你的某字符哦!!!
StreamReader sr = new StreamReader(filename);
while (sr.Peek() != -1)
{
string temp = sr.ReadLine();
temp.Replace(strsample, "");
}
sr.Close();
StreamReader sr = new StreamReader(filename);
while (sr.Peek() != -1)
{
string temp = sr.ReadLine();
temp.Replace(strsample, "");
}
sr.Close();
全部回答
- 1楼网友:雾月
- 2021-01-30 11:11
streamreader sr = new streamreader("1.txt");
string content = sr.readtoend();
string[] str = content.split(new string[] { "\r\n" }, stringsplitoptions.none);
for (int i = 0; i < str.length; i++)
{
console.writeline("第 {0} 行: {1}", i+1, str[i]);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯