当前位置: 代码迷 >> ASP.NET >> 正则表达式用法解决方案
  详细解决方案

正则表达式用法解决方案

热度:6428   发布时间:2013-02-25 00:00:00.0
正则表达式用法
使用正则表达式将<a href="www.china104.com" target="_blank">中的target="_blank"过滤掉 怎么写?

------解决方案--------------------------------------------------------
正则这个东西其实是不好搞的,有的东西网上一大堆。

 你也可以不用正则把target="_blank" 过滤掉的。

JS也可以的!
------解决方案--------------------------------------------------------
正则不是有replace吗,替换target="_blank"为空
------解决方案--------------------------------------------------------
还可以啦
------解决方案--------------------------------------------------------
C# code
string str = Regex.Replace(inputstr,@"(<a\b[^>]*?)target=[""'][^""'>\s]+[""']([^>]*>)","$1$2", RegexOptions.IgnoreCase);
------解决方案--------------------------------------------------------
探讨
使用正则表达式将<a href="www.china104.com" target="_blank">中的target="_blank"过滤掉 怎么写?

------解决方案--------------------------------------------------------
string input=@"<a href="www.china104.com" target="_blank">";
string reslut=Regex.Replace(input,@"<a\s*href=""www.china104.com""\s*(?<target>(.*))>","");
------解决方案--------------------------------------------------------
yourhtml=Regex.Replace(yourhtml,@"(?i)(<a[^>]*?)target=(['""]?)_blank\2([^>]*?>)","$1$3");
  相关解决方案