RegexOptions.IgnoreCase正则表达式替换,忽略大小写
本文导语: //////////////////////////// string inputstr = "@{AbcD},@{bbbb},@{ABcd}"; string pmType = "@"; string regTxt = (pmType + "\s*\{\s*" + "abcd" + "\s*\}").Replace("(", "\(").Replace(")", "\)"); //string regTxt = (pm...
////////////////////////////
string inputstr = "@{AbcD},@{bbbb},@{ABcd}";
string pmType = "@";
string regTxt = (pmType + "\s*\{\s*" + "abcd" + "\s*\}").Replace("(", "\(").Replace(")", "\)");
//string regTxt = (pmType + "\s*\{\s*" + "aaaa" + "\s*\}").Replace("(", "\(").Replace(")", "\)");
// string regTxt = @"@s*{s*aaaas*}";
// string regTxt = @"@s*{s*aaaas*}/gi";
inputstr = Regex.Replace(inputstr, regTxt, "CCC", RegexOptions.IgnoreCase | RegexOptions.Compiled);
///////////////
对于小文本不使用 RegexOptions.Compiled;
您可能感兴趣的文章:
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。