http://.*\.png(.*)http
虽然不行,但就你给出了正则
怎會有這樣子的字串出現
與其想辦法拆,不如檢討一下規劃
你这问题问的不清不楚的,最后留下的是【文字文字:文字】这部分?前后确定都只是这种http://d.sdf.dom/df.png?
var reg = new Regex(@"(http|https)😕/(.)*?.png");
var content = @"https://d.sfd.com/fd.pnghttp://d.fie.com/dfj.png文字文字:文字http://a.b.com/d.png";
var theText = reg.Replace(content, "");
Console.WriteLine(theText);
这个比较有意思的一点,牵涉到正则的非贪婪模型。