Aug 26 2009

How to Capitalize the First Letter of Each Words in a string in C#

Category: C#Latif @ 16:24

Hi,

İf you wonder as to how to capitalize simply first letter of each words in a string, you can use ToTitleCase.

Check the sample below,

using System;

using System.Globalization;

 

namespace ToTitleCaseApp

{

    class Program

    {

        static void Main(string[] args)

        {

            string capitalizedFirstLetter = CultureInfo.CurrentCulture.TextInfo.ToTitleCase("shoot for the moon. even if you miss, you'll land among the stars.");

            Console.WriteLine(capitalizedFirstLetter);

            Console.ReadKey();

        }

    }

}

 

Result :

Shoot For The Moon. Even If You Miss, You'll Land Among The Stars.

I think, it is a handy method.

have a good time!

Tags: ,

Comments

1.
Alex Alex Vietnam says:

Hi.
It's reaaly good job. Thanks a lot for everyone. I will use it in my project.

2.
Houston movers Houston movers United States says:

Hey that is pretty useful and really simple. I'll definitely use it in my next project.

3.
long distance moving companies long distance moving companies United States says:

Thanks for this, it'll come in handy.

4.
outsourcing help desk outsourcing help desk United States says:

Thanks for sharing these useful information! Hope that you will continue doing nice article like this. I will be one of your loyal reader if you maintain this kind of post!

5.
outsourced tech support outsourced tech support United States says:

I am thankful for such a great post with many new things to learn? Thanks, you cleared up some things for me.

6.
stock broker stock broker United States says:

Yes, I have been searching for this all week better now than never!

7.
Daniel Millions Daniel Millions United States says:

You should add some social bookmark buttons to your site? At least add one for Digg so we can digg you up!

8.
personal loans for people with bad credit personal loans for people with bad credit United States says:

Wasn't sure where to post this but I would like to include your website to one of my directories. Please contact me at your convience because I will only list webistes with the owners consent - thank you.

Add comment




  Country flag

biuquote
  • Comment
  • Preview
Loading