Posted by zorro on 01/11/07 22:00
zorro wrote: > Maybe this: > preg_replace('/(\w)([A-Z])/', "$1 $2", $string); That's no good because it would transform WORD into WO RD... Maybe this then: preg_replace('/([a-z\d])([A-Z])/', "$1 $2", $string);
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming