65.9K
CodeProject is changing. Read more.
Home

Pascal and Camel Case to Display Text Conversion

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.25/5 (4 votes)

Jun 4, 2011

CPOL
viewsIcon

32524

Pascal and Camel Case to display text conversion

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();
}