Garrett Posted October 16, 2009 Share Posted October 16, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/177983-solved-small-bug-with-bbcode-regex/ Share on other sites More sharing options...
cags Posted October 17, 2009 Share Posted October 17, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/177983-solved-small-bug-with-bbcode-regex/#findComment-938580 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.