This works.

$word = "SoftwareVersionThingy";
$word = ereg_replace("([A-Z])", " \\1", $word);
$word = ltrim($word);

-philip

On Thu, 22 Aug 2002, Hessu wrote:

> Hi,
>
> I have strings like FileName, SoftwareVersion etc.
> How can I add space between words? Somehow with preg_replace perhaps?
> First letter of each word is capitalized.
>
> -Hessu-
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to