RE: Capitalizing the first letter

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

 



> 
> Thank you!  I did not know about the ucwords() functions, and it
> does not need the string set to lower case.
> 
> Now to create a filter that returns only numbers (e.g. "a1234z"
> -> "1234") and the same for non-numbers.
> 

[Peter Lauri - DWS Asia] 

This to replace all non-digit characters with ""

$string = preg_replace("/\D/", "", $string);

And this to replace all non-character characters with ""

$string = preg_replace("/\W/", "", $string);

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


[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