After a series of searching, maybe it's time for some help. How can i write a (PHP) regex to extract the string inside brackets:
This is a string with some {{variable1}}, {{variable2}}, and {{variable3}} inside.
Output:
variable1 or {{variable1}}
variable2 or {{variable2}}
variable3 or {{variable3}}
As long as we can extract the variables.
Thank you and any help will be appreciated.