Wow this is hard I can't wait till I get the hang of it.
Capitalize the first letter of a word.
echo preg_replace('/(^)(.)(.*$)/', strtoupper('\\2') . '\\3', 'yikes!');
// outputs yikes!
Nope didn't work.
So I want to see if I'm in the right place:
echo preg_replace('/(^)(.)(.*$)/', '\\1' . '-' . strtoupper('\\2') .
'-' . '\\3', 'yikes!');
//outputs -y-ikes!
So yea I've got it surrounded why now strtoupper: Yikes!
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php