Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我以 bbcode 格式使用此 rte。
http://markitup.jaysalvat.com/home/
提交 textarea 后,我将使用 bbcode 格式保存它。
但我需要两件事。
在javascript中转换,
在 c# 中转换,
在 PHP 中转换...
有很多方法可以转换 BBCode。如果您想摆脱 BBCode,则必须使用正则表达式删除所有 [ ] 块。这样的事情会做:
return preg_replace('|[[\/\!]*?[^\[\]]*?]|si','', $yourblockofbbcode);
(来源)