按照你的要求写的C#正则表达式 (?is)() 替换为 $1$2$3
完整的C#过滤文章img中除src以外所有属性的程序如下
using System;
using System.Text.RegularExpressions;
namespace retainsrc{
class RetainSRC{
static void Main(string[] args){
string str="";
string pattern = "(?is)()";
Regex rgx = new Regex(pattern);
string result=rgx.Replace(str,"$1$2$3");
Console.WriteLine(result);
Console.ReadKey();
}
}
}
运行结果