在 fckeditor 中插入值

发布于 2024-10-04 12:08:13 字数 159 浏览 5 评论 0原文

我正在 fckeditor 中插入值。

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

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

i am inserting values in fckeditor.

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

but while retrieving it is showing content along with the tags.
where is problem help me out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十雾 2024-10-11 12:08:13

在不完全知道你的输入是什么的情况下会有点困难,但是像这样的正则表达式怎么样

abc = Regex.Replace(FCKeditor.Value, @"<[^>]*>", string.Empty, RegexOptions.Multiline);

without fully knowing what your input is makes it a little hard but, what about a regex like

abc = Regex.Replace(FCKeditor.Value, @"<[^>]*>", string.Empty, RegexOptions.Multiline);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文