首页 > 其他 > 详细

Nice way for strip_tags a like

时间:2014-07-18 21:10:32      阅读:322      评论:0      收藏:0      [点我收藏+]

I found this code works great as the function strip_tags in php to replace html tags from string and I just want to share it with you. Hope it benefits!

System.Text.RegularExpressions.Regex regHtml = new System.Text.RegularExpressions.Regex("<[^>]*>");
string s = regHtml.Replace(InputString,"");

Nice way for strip_tags a like,布布扣,bubuko.com

Nice way for strip_tags a like

原文:http://www.cnblogs.com/rash/p/3850221.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!