Click here to Skip to main content
15,867,906 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

How to Toggle String Case in .NET

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
8 Dec 2011CPOL 7.3K  
A whole lot less code and a lot easier to do.public static string ToggleCase(this string str){ if (string.IsNullOrEmpty(str)) return str; return string.Join("", (from i in str select (char.IsLetter(i) ? ...
A whole lot less code and a lot easier to do.

C#
public static string ToggleCase(this string str)
{
     if (string.IsNullOrEmpty(str)) return str;
     return string.Join("", (from i in str
                             select (char.IsLetter(i) ?
                                  (char.IsUpper(i) ?
                                        char.ToLower(i) :
                                        char.ToUpper(i)) :
                                   i).ToString()
                             ).ToArray());
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Stackify
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --