Andrew Hucks wrote:
If I have something like $string = '"hello" there'; (the word hello is in double quotes, if you can't see it), how would I output it as something like <font color=color>"hello"</font> there.
Try $string = preg_replace('/"(.*?)"/', '<font color=color>"\\1"</font>', $string); Greetings from Germany Marc Steinert -- Synchronize and share your files over the web for free http://bithub.net/ My Twitter feed http://twitter.com/MarcSteinert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php