在fckeditor中插入值

时间:2010-11-25 06:36:42

标签: c# asp.net fckeditor

我在fckeditor中插入值。

abc = Regex.Replace(FCKeditor.Value, @"<(.|\n)*?>", string.Empty);

但检索它时会显示内容和标签。 问题在哪里帮助我。

1 个答案:

答案 0 :(得分:0)

没有完全知道你的输入是什么让它变得有点难,但是像

这样的正则表达式呢?
abc = Regex.Replace(FCKeditor.Value, @"<[^>]*>", string.Empty, RegexOptions.Multiline);