PDA

View Full Version : Close BB Codes


HiDeo
08-12-2004, 03:35 PM
I post here because Jake Bunce advise me to do.

http://www.vbulletin.com/forum/showthread.php?p=718834#post718834

I know in a post a bb code is automaticaly closed but I want to do in a non-vbpage.

That should be possible with some string manipulation.

I wanted to try with strpos and eregi but it's very long !

Someone have a solution ?

Modin
08-12-2004, 05:35 PM
$bbcode = preg_replace("/(?is)\[(\/w)\](.*)(^\[\/\\1\])$/", "[\\1]\\2[/\\1]", $bbcode);


Heh, there's my crack at it. Don't you love regular expressions :p

Pretty much it searches for without matching and addes the latter on on to the post.

Hopefully... haven't tested it yet.

HiDeo
08-12-2004, 09:36 PM
Thanks Modin I'll try it tomorrow because I'm too tired now !