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)
link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.