[REGEX] 2 Objecte in Pattern auslesen.

DelphiDell

Erfahrenes Mitglied
Hallo wie kann ich machen dass ich mit einem preg_replace() Pattern
dass

[colour="#234"]Hallo[/colour]


In dass ersetzen kann :confused:

<font color="#24254">Hallo</font>

Gruss

DelphiDell
 
Probier mal Folgendes:
PHP:
preg_replace('<\[colour="([^"]+?)"\](.+?)\[/colour\]>', '<span style="color:\1">\2</span>', $string)
 
Zurück