Jump to content

[SOLVED] Small bug with 'bbcode' regex


Garrett

Recommended Posts

I have the following:

 

$bb_replace = array ('/(\[[bb]\])(.+)(\[\/[bb]\])/s','/(\[url=)(.+)(\])(.+)(\[\/url\])/s','/(\[code=)(.+)(\])(.+)(\[\/code\])/s');

 

Now it works...but it appears to use the last occurrence of a tag. For example:

 

[ code=test]
something
...
...
[ /code]
[ code=test2]
something
...
...
[ /code]

[ code=test] will use the very last occurrence of [ /code], thus combining everything into the same block.

 

Hopefully my description of the bug is easy to understand what is going on. Anything that can help would be great.

Link to comment
Share on other sites

Regular expressions are by default greedy and will go as far as they can to match a pattern rather than matching it at the first opportunity. You need to either use the question mark to make each required item lazy or alternatively you could use the U modifier to make matches ungreedy by default. Just bear in mind that nested tags will bring up a whole different set of problems.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.