Re: Regular Expression help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 1/19/06, Chris Boget <chris.boget@xxxxxxxx> wrote:> I've been beating my head against the wall for a while trying to come up> with the RE I need to use.  I have a camel case word - let's use> JimJoeBobBriggs.  I need to come up with a RE that will fine all the> upper case characters and insert an underscore prior to those characters> with the exception of a possible first character.  So using the> aforementioned word, the RE would change it to Jim_Joe_Bob_Briggs.>
<?php$string = 'JimJoeBobBriggs'';print preg_replace('/([[:alnum:]])([[:upper:]])/', '\1_\2', $string);?>

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux