verdammte axt heute steh ich echt aufm schlauch ..
ich will aus nem text " <...> " filtern. So hab ichs imo
allerdings bekomm ich net s gewünschte ergebnis
ich will aus nem text " <...> " filtern. So hab ichs imo
PHP-Code:
$pattern = '#<(.*)>#is';
//
// RegExp auswerten
//
$result = preg_split($pattern, $subject);
//
// Gefundene Teile ausgeben
//
echo '<pre>'.print_r($result, TRUE).'</pre>';
Kommentar