On Wed, May 8, 2013 at 3:13 PM, Steven Staples <sstaples@xxxxxxxx> wrote: > > Why does this feel like a new function/feature for PHP now? > > Function acronymize($acronym) > { > // do stuff here now... :S > } <?php function acronymize($text) { preg_match_all('/[A-Z]/s',ucwords(strtolower($text)),$matches); return implode('',$matches[0]); } ?> -- </Daniel P. Brown> Network Infrastructure Manager http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php