Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to match multiple square bracket tags in a string to extract them from the string.

For example:

$string = 'Request: [CODE]sksdjdiwjwdwdkw[/CODE] Response: [CODE]sksdjdiwjwdwdkw[/CODE]';

preg_match_all('/\[CODE\](.*)\[\/CODE\]/',$string) matches everything between the first [CODE] and last [/CODE].

Does anyone have a idea on how the expression are suppost to look like?

share|improve this question

2 Answers

Try making your match non-greedy:

preg_match_all('/\[CODE\](.*?)\[\/CODE\]/',$string)
                          ^^^
share|improve this answer
Wow, that was easy :) Thanks for your quick reply. – Gomer Mar 15 '11 at 16:10
([^[]+) is faster – Cfreak Mar 15 '11 at 16:11
@Gomer: if this answer solved your problem then accept it! Click on the "green mark" next to this answer. – Jan Hančič Mar 23 '11 at 9:45

Don't use .* (faster than non-greedy)

preg_match_all('/\[CODE\]([^\[]+)\[\/CODE\]/',$string);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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