Click here to Skip to main content
15,886,110 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)
14 Jun 2012CPOL 8.4K   2  
This is an alternative for "How to Toggle String Case in .NET"

I couldn't resist to give a Linq/delegate alterantive to the original tip.

How about this:

C#
public class Program
{
    public static void Main()
    {
        string s = "AbCdEfGhI§$%&/()1234567890";
        Func<char, char> toggle = c => char.IsUpper(c) ? char.ToLower(c) : char.ToUpper(c);
        Console.WriteLine(s);
        Console.WriteLine(new string(s.Select(toggle).ToArray()));
    }
}
Performance may be not optimal, but probably good enoug for many cases...

Cheers

Andi

License

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


Written By
Founder eXternSoft GmbH
Switzerland Switzerland
I feel comfortable on a variety of systems (UNIX, Windows, cross-compiled embedded systems, etc.) in a variety of languages, environments, and tools.
I have a particular affinity to computer language analysis, testing, as well as quality management.

More information about what I do for a living can be found at my LinkedIn Profile and on my company's web page (German only).

Comments and Discussions

 
-- There are no messages in this forum --