I have the following short codes:
Dear {{name}}, You are being invited for the following event: {{event}}
Dear {{name}},
{{name}}
You are being invited for the following event: {{event}}
{{event}}
With preg_match_all():
$pattern = '~\{\{(.*?)\}\}~'; preg_match_all($pattern, $string, $matches); var_dump($matches[1]);