c#正则表达式 包含多个特定字符串怎么匹配

2024-11-30 09:11:30
推荐回答(1个)
回答1:

按照你的要求编写的C#程序如下(输出是你要求的样子)

using System;

using System.Text.RegularExpressions;

namespace MatchApplication{

 class MatchClass{

  static void Main(string[] args){

   string s="diocrwerrwerfdocq";

   MatchCollection mc =Regex.Matches(s, "]*?id=\"c\"[^<>]*?/>",RegexOptions.IgnoreCase);

   foreach (Match m in mc){

            Console.WriteLine(m.Groups[0].Value);

   }

   Console.ReadKey();

  }

 }

}