c# 检索指定文件夹下所有文件的字符串,获取"sfun.UpOperation"和“global”之间的字符串
时间: 2024-02-12 10:07:19 浏览: 72
搜索文件夹下包含指定字符串的文件
你可以使用 C# 的 `Directory.GetFiles` 方法获取指定文件夹下的所有文件路径,然后对每个文件使用 `File.ReadAllText` 方法读取文件内容,最后使用正则表达式获取目标字符串。
以下是一个示例代码:
```csharp
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
class Program
{
static void Main(string[] args)
{
string folderPath = "your_folder_path";
string pattern = @"sfun\.UpOperation.*?global";
foreach (string filePath in Directory.GetFiles(folderPath))
{
string fileContent = File.ReadAllText(filePath);
Match match = Regex.Match(fileContent, pattern, RegexOptions.Singleline);
if (match.Success)
{
Console.WriteLine(match.Value);
}
}
}
}
```
其中,`folderPath` 是指定的文件夹路径,`pattern` 是正则表达式模式,`RegexOptions.Singleline` 标志表示让 `.` 匹配任何字符,包括换行符。代码中使用 `foreach` 循环遍历所有文件,对于每个文件,使用 `File.ReadAllText` 方法读取文件内容,然后使用 `Regex.Match` 方法匹配目标字符串。如果匹配成功,则输出匹配结果。
阅读全文