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?