流式读取器通过正则表达式循环

本文关键字:正则表达式 循环 读取 | 更新日期: 2023-09-27 18:02:25

如何在regex循环上应用流阅读器

请帮助我不知道

     string Value =pattern search;
        var match = Regex.Match(File.ReadAllText(patch ) , Value);  
    while (match.Success)
{
  doing regex code loop 
  }

请帮我一下

流式读取器通过正则表达式循环

您可以使用Regex.Matches

var matches = Regex.Matches(File.ReadAllText(patch), Value);
foreach (var match in matches)
{
    //do what you want with every match
}