How do I format a string to title case?
|
|
|
|
|
|
|
Here is a simple static method to do this in C#: |
||
|
|
|
|
|
||
|
|
|
|
Without using a ready-made function, a super-simple low-level algorithm to convert a string to title case:
This asssumes the "convert character to uppercase" will do that correctly regardless of whether or not the character is case-sensitive (e.g., '+'). |
||
|
|
|
If the language you are using has a supported method/function then just use that (as in the C# ToTitleCase method) If it does not, then you will want to do something like the following: *To capatilise it in, say, C - use the ascii codes (http://www.asciitable.com/) to find the integer value of the char and subtract 32 from it. There would need to be much more error checking in the code (ensuring valid letters etc.), and the "Capatilise" function will need to impose some sort of "title-case scheme" on the letters to check for words that do not need to be capatilised ('and', 'but' etc. Here http://answers.google.com/answers/threadview?id=349913 is a good scheme) |
||
|
|
|
Here's a Perl solution http://daringfireball.net/2008/05/title_case Here's a Ruby solution http://frankschmitt.org/projects/title-case Here's a Ruby one-liner solution: http://snippets.dzone.com/posts/show/4702
What the one-liner is doing is using a regular expression substitution of the first character of each word with the uppercase version of it. |
|||
|
|
|
|
I would be wary of automatically upcasing all whitespace-preceded-words in scenarios where I would run the risk of attracting the fury of nitpickers. I would at least consider implementing a dictionary for exception cases like articles and conjunctions. Behold:
And when it comes to proper nouns, the thing gets much uglier. |
|||
|
|
|
|
This is a poor solution if you ever plan to accept characters beyond a-z and A-Z. For instance: ASCII 134: å, ASCII 143: Å. Use library calls, don't assume you can use integer arithmetic on your characters to get back something useful. Unicode is tricky. |
|||
|
|
|
|
With perl you could do this: my $tc_string = join ' ', map { ucfirst($_) } split /\s+/, $string; |
||
|
|
|
In Perl:
That's even in the FAQ. |
||
|
|
|
Here you have a C++ version. It's got a set of non uppercaseable words like prononuns and prepositions. However, I would not recommend automating this process if you are to deal with important texts.
|
||
|
|
|
|
Any suggestion about Javascript? |
||
|
|
|
|
I think using the CultureInfo is not always reliable, this the the simple and handy way to manipulate string manually: string sourceName = txtTextBox.Text.ToLower(); string destinationName = sourceName[0].ToUpper(); for (int i = 0; i < (sourceName.Length - 1); i++) { if (sourceName[i + 1] == "") { destinationName += sourceName[i + 1]; } else { destinationName += sourceName[i + 1]; } txtTextBox.Text = desinationName; |
||
|
|
