在后台得到kindeditor编译器里的值时 咋样去掉值的外链接,多的样式,图片是否下载。页面上有多选按钮标示,后台根据选中来处理。咋处理啊!???????急急急急
去掉字符串里的<img/> 是整个 急 在线等 (其他的都做出来了)
外链的问题,可以用正则处理,
多的样式,不太明白!
private static string RemoveHa(string strContent, string strTagName)
{
string pattern = "";
string strResult = "";
Regex exp;
MatchCollection matchList;
pattern = "<" + strTagName + "([^>])*>";
exp = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace);
matchList = exp.Matches(strContent);
foreach (Match match in matchList)
{
if (match.Value.Length > 0)
{
strResult = match.Value;
strContent = strContent.Replace(strResult, "");
}
}
return strContent;
}