Takes a camelCaseWord or PascalCaseWord and "wordifies" it, ie camelCaseWord => camel Case Word

            public static string Wordify( this string camelCaseWord )
    		{
    			// if the word is all upper, just return it
    			if( !Regex.IsMatch( camelCaseWord, "[a-z]" ) )
    				return camelCaseWord;
    
    			return string.Join( " ", Regex.Split( camelCaseWord, @"(?<!^)(?=[A-Z])" ) );
    		}


I often use it in conjuction with Capitalize

            public static string Capitalize( this string word )
    		{
    			// the aggregate at the end is necessary because IEnumberable<char>.ToString doesn't do 
    			// what I want, it returns something like System.Linq.Enumerable+d__4d`1[System.Char]
    			return word[0].ToString( ).ToUpper( ) + word.Skip( 1 ).Aggregate( "", ( s, c ) => s + c );
    		}