Click here to Skip to main content
Click here to Skip to main content

How to Toggle String Case in .NET

By , 14 Jun 2012
 

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

How about this:

    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)

About the Author

Andreas Gieriet
eXternSoft GmbH
Switzerland Switzerland
Member
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).

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 14 Jun 2012
Article Copyright 2012 by Andreas Gieriet
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid