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   
GeneralAdditional note: this algorithm could be further extended by...memberDrABELL16 Jun '11 - 2:15 
GeneralReason for my vote of 5 Practical and elegant solution, 5*! ...memberDrABELL16 Jun '11 - 2:06 
Reason for my vote of 5
Practical and elegant solution, 5*! Btw, there has been rather intensive discussion on CodeProject in regards to various string conversion algorithms: http://www.codeproject.com/Tips/162540/Letter-Case-Conversion-Algorithms-Title-Case-Toggl
GeneralReason for my vote of 5 Good suggestion.memberBen Kotvis8 Jun '11 - 2:51 
GeneralI just modified it to add the check if the string is empty, ...memberBen Kotvis8 Jun '11 - 2:51 
GeneralRe: Thanks, I'm glad you found my suggestions useful!memberkiswa008 Jun '11 - 3:16 
GeneralReason for my vote of 4 nice addition need to check for stri...memberTim Yen7 Jun '11 - 20:04 
GeneralRe: I meant to add that in, thanks for reminding me!memberkiswa008 Jun '11 - 3:01 
GeneralI guess the only concern I have with this is that it will th...memberBen Kotvis7 Jun '11 - 3:17 
GeneralRe: Yeah, I forgot to include the check for null or empty. It's ...memberkiswa008 Jun '11 - 3:05 
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
Web04 | 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