标记编辑器将输出显示为 html,并剥离标签

发布于 2024-10-26 07:41:28 字数 268 浏览 1 评论 0原文

我正在使用 bbcode 格式的 rte。

http://markitup.jaysalvat.com/home/

一旦文本区域提交,我就会保存它具有 bbcode 格式。

但我需要两件事。

  • 我现在如何将其显示为 html?
  • 我如何在没有 bbcode 标签的情况下显示(即仅文本)

im using this rte in bbcode format.

http://markitup.jaysalvat.com/home/

once the textarea is submitted i'm saving it with bbcode format.

but i need 2 things.

  • how do i now display it as html?
  • how can i display without the bbcode tags (i.e just text)

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

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

发布评论

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

评论(1

伤感在游骋 2024-11-02 07:41:28

在 JavaScript 中转换

在 C# 中转换

在 PHP 中转换...

转换BBCode的方法有很多种。如果您想删除 BBCode,则必须使用正则表达式删除所有 [ ] 块。像这样的事情会做:(

return preg_replace('|[[\/\!]*?[^\[\]]*?]|si','', $yourblockofbbcode);

来源

Convert in javascript,

Convert in c#,

Convert in PHP...

There are a lot of ways to convert BBCode. If you want to get rid of the BBCode, you'll have to use a regular expression removing all the [ ] blocks. Something like this'll do:

return preg_replace('|[[\/\!]*?[^\[\]]*?]|si','', $yourblockofbbcode);

(source)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文