我在fckeditor中插入值。
abc = Regex.Replace(FCKeditor.Value, @"<(.|\n)*?>", string.Empty);
但检索它时会显示内容和标签。 问题在哪里帮助我。
答案 0 :(得分:0)
没有完全知道你的输入是什么让它变得有点难,但是像
这样的正则表达式呢?abc = Regex.Replace(FCKeditor.Value, @"<[^>]*>", string.Empty, RegexOptions.Multiline);