It worked !! Thank you very much for your help!
- Yours, Oliver [EMAIL PROTECTED] (Papp Gyozo) wrote in news:003701c14cf0$d7363300$01fdfea9@jaguar: > $text = "[LINK image.png]MyImage[/LINK]"; > $out = preg_replace ("|\[LINK(.*)\](.*)\[/LINK\]|iU", '<a > href="\1">\2</a>',$text); > > I hope, I don't forget anything. > > > ----- Original Message ----- > From: "Oliver Ruf" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, October 04, 2001 4:23 PM > Subject: [PHP] preg_replace > > >> Hello >> >> I'm trying to write some kind of parser... see the example: >> >> $text = "[LINK image.png]MyImage[/LINK]"; >> >> $out = preg_replace ("/\[LINK*\]*\[/LINK\]/i", "/<a >> href=\"*\">*</a>/",$text); >> >> Well... What I would like is, that $out would be something like about >> this: "<a href="image.png">MyImage</a>" >> >> >> But this somehow doesn't work because Regexp don't seem to be supported >> for the replacement string... >> >> Any idea ?? >> Thx, Oliver >> >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> To contact the list administrators, e-mail: [EMAIL PROTECTED] >> > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]