C#如何从文件中读取两个字符串(起始字符串和结束字符串)之间的数据到另一个文件呢?
例:现在有一个文件f.txt,f.txt中包含有起始标志字符串str1和结束标志字符串str2,str1和str2之间数据为有效数据,现在想把str1和str2之间的数据...
例:
现在有一个文件f.txt,f.txt中包含有起始标志字符串str1和结束标志字符串str2,str1和str2之间数据为有效数据,现在想把str1和str2之间的数据读到另一个文件进行处理。请问怎么处理啊,最好要简单高效点的代码。
最好能快一点啊,急求呢,100分啊,第一次送出这么多分。 展开
现在有一个文件f.txt,f.txt中包含有起始标志字符串str1和结束标志字符串str2,str1和str2之间数据为有效数据,现在想把str1和str2之间的数据读到另一个文件进行处理。请问怎么处理啊,最好要简单高效点的代码。
最好能快一点啊,急求呢,100分啊,第一次送出这么多分。 展开
5个回答
展开全部
计算str1,str2的各自长度,将所有内容读到缓冲区,然后将缓冲区里面str1length到缓冲区长度-str1length-str2length的内容写入另一个文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string text1 = File.Open("f.txt");
string text2 = text1.Substring(text1.IndexOf(str1), text1.IndexOf(str2));
获得的text2就是你需要的有效数据,大概就是这个样子。
string text2 = text1.Substring(text1.IndexOf(str1), text1.IndexOf(str2));
获得的text2就是你需要的有效数据,大概就是这个样子。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C#贴吧 正则表达式
using System;
using System.Collections.Generic;
using System.Linq;using System.Text;
using System.IO;
using System.Text.RegularExpressions;
namespace Csharp正则表达式
{
class Program
{
static void Main(string[] args)
{
using(StreamReader sr = new StreamReader(@"C:\1.txt"))
{
string s = sr.ReadToEnd();
//开始字符串
string s1 = "zhou";
//结束字符串
string s2 = "li";
Regex rg = new Regex("(?<=(" + s1 + "))[.\\s\\S]*?(?=(" + s2 + "))", RegexOptions.Multiline | RegexOptions.Singleline);
string str=rg.Match(s).Value;
StreamWriter sw = new StreamWriter(@"C:\2.txt");
sw.Write(str);
sw.Close();
}
Console.ReadKey();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;using System.Text;
using System.IO;
using System.Text.RegularExpressions;
namespace Csharp正则表达式
{
class Program
{
static void Main(string[] args)
{
using(StreamReader sr = new StreamReader(@"C:\1.txt"))
{
string s = sr.ReadToEnd();
//开始字符串
string s1 = "zhou";
//结束字符串
string s2 = "li";
Regex rg = new Regex("(?<=(" + s1 + "))[.\\s\\S]*?(?=(" + s2 + "))", RegexOptions.Multiline | RegexOptions.Singleline);
string str=rg.Match(s).Value;
StreamWriter sw = new StreamWriter(@"C:\2.txt");
sw.Write(str);
sw.Close();
}
Console.ReadKey();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没说清楚啊。你这f.txt中是指只有一条以str1开头、以st2结尾的数据,还是说有很多条,比如每行是一条?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给个邮箱
追问
anphyier@qq.com
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询