Click here to Skip to main content
15,890,438 members
Articles / Web Development / ASP.NET

Pascal and Camel Case to Display Text Conversion

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
14 Jun 2011CPOL 9.6K   1  
This version treats the input string as an indexed string. The code is a little shorter.private string createDisplayText(string propertyName){ if (String.IsNullOrEmpty(propertyName)) { return String.Empty; } StringBuilder builder = new StringBuilder(); ...

Views

Daily Counts

License

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


Written By
Software Developer (Senior) SouthData, Inc.
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions