15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > 有什么免费的网页开发与代码编辑软件?

有什么免费的网页开发与代码编辑软件?

时间:2023-11-25 01:30:01 | 来源:网站运营

时间:2023-11-25 01:30:01 来源:网站运营

有什么免费的网页开发与代码编辑软件?:推荐工具:.NET Fiddle

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

推荐说明::对于.NET开发者来说是福音,因为我们可以不用再担心环境与庞大的IDE的问题,不管在任何时间,任何环境,如果有了什么点子,打开http://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>地址:

https://dotnetfiddle.net/

原文链接:.Net在线编辑工具.NET Fiddle

关键词:编辑,免费

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭