如何用winform逐行读取txt文件中的关键字,并将关键字前后10个字符分别显示在txtbox中
时间: 2024-09-11 13:04:48 浏览: 43
WinForm实现读取Resource中文件的方法
5星 · 资源好评率100%
在WinForms应用程序中逐行读取txt文件并获取关键字前后10个字符,可以通过以下步骤实现:
1. 首先,确保你的WinForms窗体中有一个TextBox控件用于显示结果,以及一个Button控件用于触发读取文件的操作。
2. 在按钮的点击事件中,添加读取txt文件的代码。使用`StreamReader`类来逐行读取文件内容。
3. 在读取每一行时,使用字符串的`IndexOf`方法来查找关键字的位置。
4. 一旦找到关键字,根据关键字的位置计算前后10个字符的范围,并将这部分字符串提取出来。
5. 将提取的字符串显示在TextBox中,并根据需要进行格式化或者添加前后的文本标记。
以下是一个简单的示例代码:
```csharp
private void btnReadFile_Click(object sender, EventArgs e)
{
string filePath = @"C:\path\to\your\file.txt"; // 文件路径
string keyword = "关键字"; // 需要查找的关键字
int keywordLength = keyword.Length;
int contextLength = 10; // 关键字前后各取10个字符
using (StreamReader reader = new StreamReader(filePath))
{
string line;
while ((line = reader.ReadLine()) != null)
{
int index = line.IndexOf(keyword);
if (index != -1)
{
// 确保关键字前后有足够的字符
int startIndex = Math.Max(0, index - contextLength);
int endIndex = Math.Min(line.Length, index + keywordLength + contextLength);
// 提取关键字前后的字符
string context = line.Substring(startIndex, endIndex - startIndex);
// 显示结果
textBoxResult.AppendText($"关键字前后内容: {context}\r\n");
}
}
}
}
```
请根据实际情况调整文件路径、关键字以及其他参数。
阅读全文