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

Pascal and Camel Case to Display Text Conversion

By , 8 Jun 2011
 

Introduction

This is a handy function that you can use if you are using Reflection and have a property name, for example, "myPropertName" and you want it to be a label or a heading formatted like "My Property Name".

Background

Sometimes I use Reflection to create columns in basic administration functions in an application where there is no real business logic behind the objects. Things like type and status for example.

Using the code

Pretty straightforward. Just send a property name to it like myPropertyName or MyPropertyName and it will turn it into "My Property Name".

private string createDisplayText(string propertyName)
{
    StringBuilder builder = new StringBuilder();
 
    if(!string.IsNullOrEmpty(propertName))
    {
        character = char.ToUpper(propertName[0]);
        builder.Append(character)
    }
    for (int i = 1; i < propertyName.Length; i++)
    {
        char character = propertyName[i];
        if (char.IsUpper(character))
        {
            builder.Append(" ");
        }
    }
    return builder.ToString();
}

License

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

About the Author

Ben Kotvis
United States United States
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
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.130516.1 | Last Updated 8 Jun 2011
Article Copyright 2011 by Ben Kotvis
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid