On Thu, Oct 16, 2003 at 03:35:57PM +0300, Shmuel wrote: : : I have a misspelled sentence like this: "I am not aIone". : I want to change the capital I to small l, but only in : the beginning of a word.
This doesn't make sense. It sounds like you want to replace every
occurance of 'I' inside a word with a 'l'.
preg_replace('/(\B)I(\B)/', '\1l\2', $yourstring)
Then again, I could be misreading.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

