Philip,
What about "SoftwareVersion Thingy"?
Won't that end up as "Software Version  Thingy" - with two spaces before the
"T"?
Can the RegEx be 'turned off' if the u/case letter is already preceded by a
space?
(sorry, may not be Hessu's requirement = my curiosity)
Regards,
=dn


> 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
>
>


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

Reply via email to