Hi Daniel,
leider habe ich gerade nicht so viel Zeit :(
Das habe ich bei php.net gefunden:
<?php
$text = "I am an HTML file with special tags such as {tag1} and {tag2} in it";
preg_match_all( '/{.*?}/', $text, $tags );
foreach ($tags[0] as $loop_result) {
echo $loop_result."
";
}
?>
da müssten dann noch die {} gelöscht werden....
http://www.php.net/manual/de/ref.strings.php
Viele Grüße
annA