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. $word =

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 already

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