.Net 在线编辑工具.NET Fiddle

adminmycode2年前.net808

推荐工具:.NET Fiddle

推荐理由:在线调试,编译,运行.net 代码,同时支持 C#,VB.NET,F#

推荐说明::对于.NET 开发者来说是福音,因为我们可以不用再担心环境与庞大的 IDE 的问题,不管在任何时间,任何环境,如果有了什么点子,打开 dotnetfiddle.net,输入你的代码;总的来说,它能够让你在浏览器窗体重复折腾代码片段而无需运行 Visual Studio。当你仅仅是调试少量代码时这实在是太方便了。.NET Fiddle 的一个最大卖点就是它是免费的。

网站截图:

小试牛刀

看看我的代码
using System;
public class Program{  public static void Main()  {    string img = "i<img style='aaa' />j<Img style='bbb' />k<img style='ccc' ></img>";    Console.WriteLine(ReplacehtmlBody(img));    Console.WriteLine(ReplacehtmlBody2(img));  }
 public static string ReplaceRegex(string content, string regParen, string replyContent)  {    string strOutput = System.Text.RegularExpressions.Regex.Replace(content, regParen, replyContent);    return strOutput;  }
 public static string ReplacehtmlBody(string htmlBody)  {    if (string.IsNullOrWhiteSpace(htmlBody))    {      return htmlBody;    }
   return ReplaceRegex(htmlBody, "(i?)(\\<img.*?style=['\"])([^\\>]+\\>)", "$2max-width: 80% !important;$3");  }
 public static string ReplacehtmlBody2(string htmlBody)  {    if (string.IsNullOrWhiteSpace(htmlBody))    {      return htmlBody;    }
   var reg = new System.Text.RegularExpressions.Regex("(\\<img.*?style=['\"])([^\\>]+\\>)", System.Text.RegularExpressions.RegexOptions.IgnoreCase);    return reg.Replace(htmlBody, "$1max-width: 80% !important;$2");  }}
<img style='max-width: 80% !important;aaa' />j<Img style='bbb' />k<img style='max-width: 80% !important;ccc' ></img>i<img style='max-width: 80% !important;aaa' />j<Img style='max-width: 80% !important;bbb' />k<img style='max-width: 80% !important;ccc' ></img>

标签: .net

相关文章

Asp.net 和.net 的区别

通 ASP.NET 是 .NET 的一个子集,.NET 其他应用领域包括 WinForms(桌面程序)、Mobile、嵌入式等等通俗点就是 ASP.N...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。