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
 
Why not take care of the first character before the loop, instead of checking it every time (not that it makes a big difference on modern hardware)? This also moves the char declaration out of the loop.
 
private string createDisplayText(string propertyName)
{
    if (String.IsNullOrEmpty(propertyName))
    {
        return String.Empty;
    }
 
    StringBuilder builder = new StringBuilder();
    char character = char.ToUpper(propertyName[0]);
    builder.Append(character);
 
    for (int i = 1; i < propertyName.Length; ++i)
    {
        character = propertyName[i];
        if (char.IsUpper(character))
        {
            builder.Append(" ");
        }
        builder.Append(character);
    }
 
    return builder.ToString();
}
 
This isn't really an alternate, as much as a minor modification.
 
Also, the for loop could be shorter, if somewhat less readable.
for (int i = 1; i < propertyName.Length; ++i)
{
    character = propertyName[i];
    builder.Append((char.IsUpper(character)) ? ' ' + character : character);
}

License

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

About the Author

kiswa00
Software Developer
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   
GeneralThat is a good idea! Thanks for the suggestion.memberBen Kotvis7 Jun '11 - 2:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 8 Jun 2011
Article Copyright 2011 by kiswa00
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid