I wanted to match shortcodes inside a string and found the following regex from here. It works fine. But i want to learn how it works.

Can anyone plz explain me the components of this regex and how it matches the shortcode.

preg_match_all('%(?<=\[shortcode\]).*?(?=\[/shortcode\])%s',$content, $result, PREG_PATTERN_ORDER);
link|improve this question

56% accept rate
possible duplicate of Identifying wordpress shortcodes using a regular expression – mario Nov 21 '11 at 5:12
feedback

1 Answer

up vote 2 down vote accepted

There are tools to explain regular expressions.

Yours for example:

NODE                     EXPLANATION
----------------------------------------------------------------------
  (?<=                     look behind to see if there is:
----------------------------------------------------------------------
    \[                       '['
----------------------------------------------------------------------
    shortcode                'shortcode'
----------------------------------------------------------------------
    \]                       ']'
----------------------------------------------------------------------
  )                        end of look-behind
----------------------------------------------------------------------
  .*?                      any character  (0 or more times
                           (matching the least amount possible)
----------------------------------------------------------------------
  (?=                      look ahead to see if there is:
----------------------------------------------------------------------
    \[                       '['
----------------------------------------------------------------------
    /shortcode               '/shortcode'
----------------------------------------------------------------------
    \]                       ']'
----------------------------------------------------------------------
  )                        end of look-ahead
----------------------------------------------------------------------

Read more about the assertions on http://www.regular-expressions.info/lookaround.html

link|improve this answer
Thanks for the helpful information – Rakhitha Nimesh Nov 21 '11 at 6:33
feedback

Your Answer

 
or
required, but never shown

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