C#搜索文本文件,返回包含单词的所有行
本文关键字:包含单 返回 搜索 文本 文件 | 更新日期: 2023-09-27 18:30:55
我需要帮助,因为我在实习期间正在建立的一个程序。这个想法是检查用户在任何PC上登录的频率。当用户登录时,该信息将记录在文本文件中,如下所示。
01-01-2011 16:47:10-002481C218B0-WS3092-Chsbe (XP-D790PRO1)
现在我需要搜索文本文件并(例如)在文本文件中搜索用户 Chsbe 的所有登录日期。
到目前为止我的代码:
private void btnZoek_Click(object sender, EventArgs e)
{
int counter = 0; string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt");
while((line = file.ReadLine()) != null)
{ if ( line.Contains(txtZoek.Text) )
{
txtResult.Text = line.ToString();
}
}
file.Close();
}
我的问题是,如何将日志中包含搜索词的所有字符串返回到 txtResult?
你已经做得很好了。唯一的错误是写入文本框的最后一行覆盖了前一行。
你需要在一次性 Stream 周围使用 StringBuilder 和 using
语句,如下所示:
private void btnZoek_Click(object sender, EventArgs e)
{
int counter = 0; string line;
StringBuilder sb = new StringBuilder();
// Read the file and display it line by line.
using(System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt"))
{
while((line = file.ReadLine()) != null)
{
if ( line.Contains(txtZoek.Text) )
{
// This append the text and a newline into the StringBuilder buffer
sb.AppendLine(line.ToString());
}
}
}
txtResult.Text = sb.ToString();
}
当然,您的 txtResult 应将属性 MultiLine 设置为 true,否则您将无法看到输出。
请记住,using
是处理此类情况的更好方法,因为它会自动处理意外的文件异常,并注意正确关闭您的流
定义列表
列出您的列表 = 新列表();
替换行txtResult.Text = line.ToString();
由yourList.Add(line);
在列表"您的列表"中,您获得了包含用户的所有行
如下所示的内容可能会帮助您开始使用正则表达式:
string pattern = "Chsbe";
Regex rx = new Regex(pattern, RegexOptions.IgnoreCase);
MatchCollection mc = rx.Matches(inputText);
foreach (Match m in mc)
{
Console.WriteLine(m.Value);
}
也许这样的事情会起作用。
private void btnZoek_Click(object sender, EventArgs e)
{
int counter = 0; string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt");
while((line = file.ReadLine()) != null)
{ if ( line.Contains(txtZoek.Text) )
{
txtResult.Text = txtResult.Text + Environment.Newline + line.ToString();
}
}
file.Close();
}
这将是我的版本:
private void btnZoek_Click(object sender, EventArgs e)
{
try
{
int counter = 0;
string line;
List<String> LinesFound = new List<string>();
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt");
while ((line = file.ReadLine()) != null)
{
if (line.Contains(txtZoek.Text))
{
LinesFound.Add(line);
}
}
file.Close();
foreach (string Line in LinesFound)
{
txtResult.Text = txtResult.Text + Line + Environment.NewLine;
}
}
catch (Exception)
{
MessageBox.Show("Error in btnZoek_Click");
}
}
如果列表真的很长,我会使用 StringBuilder 创建一个结果字符串作为性能加速。
使用富文本框或使用多行属性例如
private void btnZoek_Click(object sender, EventArgs e)
{
int counter = 0; string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt");
while((line = file.ReadLine()) != null)
{ if ( line.Contains(txtZoek.Text) )
{
richtextbox1.Text += "'n" + line.ToString();
txtresult.Text += "'n" + line.ToString();
}
}
file.Close();
}
private void btnZoek_Click(object sender, EventArgs e)
{
int counter = 0; string line;
StringBuilder str = new StringBuilder();
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:''log.txt");
while((line = file.ReadLine()) != null)
{
if (line.Contains(txtZoek.Text))
{
str.Append(line.ToString());
}
}
file.Close();
}
尝试更改此行 ->
txtResult.Text = line.ToString();
自:
txtResult.Text += line.ToString();