Re: [PHP] Re: SeparatingWords

2002-08-21 Thread Bogdan Stancescu
Just to make a fool of myself, I'd explode the string, parse each item and implode. I'm sure it can be done through some regexp wizardry as well - probably matching something along the lines of "(^\ [A-Z])" but I'm way too retarded regexp-wise. BTW, any good online tutorials? I read through PH

Re: [PHP] Re: SeparatingWords

2002-08-21 Thread Philip Hallstrom
Yes, it would and yes you can, but I'll leave that up to you :) On Wed, 21 Aug 2002, DL Neil wrote: > 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 alrea

Re: [PHP] Re: SeparatingWords

2002-08-21 Thread DL Neil
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. > >

[PHP] Re: SeparatingWords

2002-08-21 Thread Philip Hallstrom
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? > Fi