流阅读器在正则表达式循环?

时间:2016-08-13 04:32:01

标签: c# regex

如何在正则表达式循环上应用流阅读器

请帮忙 我不知道

var ifs = require('os').networkInterfaces();
var result = Object.keys(ifs)
  .map(x => ifs[x].filter(x => x.family === 'IPv4' && !x.internal)[0])
  .filter(x => x)[0].address;
请给我一个手

1 个答案:

答案 0 :(得分:1)

您可以使用Regex.Matches

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