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 is because IEnumerable<char>.ToString doesn't return the characters as a string, it returns the type's name as a string.
    			return word[0].ToString( ).ToUpper( ) + word.Skip( 1 ).Aggregate( "", ( s, c ) => s + c );
    		}

Example usage

    SomeEntityObject entity = DataAccessObject.GetSomeEntityObject( id );
    List<PropertyInfo> properties = entity.GetType().GetPublicNonCollectionProperties( );
    
    // wordify the property names to act as column headers for an html table or something
    List<string> columns = properties.Select( p => p.Name.Capitalize( ).Wordify( ) ).ToList( );