upcase method capitalizes the entire string.
I need to capitalize only the first letter.
Also, i need support several popular languages, like "german", "russian" etc.
How to do it ?
|
upcase method capitalizes the entire string. I need to capitalize only the first letter. Also, i need support several popular languages, like "german", "russian" etc. How to do it ? |
|||||
|
|
First of all, be sure to use the coding magic comment:
gives
works without errors. The problem is, it just doesn't do what you want it to: it outputs
does the job (despite being ugly). Otherwise, you'll have to install the
This ouputs the right word: |
|||||||
|
|
Unfortunately, it is impossible for a machine to upcase/downcase/capitalize properly. It needs way too much contextual information for a computer to understand. That's why Ruby's What do I mean by "contextual information"? For example, to capitalize But Ruby doesn't know the language, it only knows the encoding. Therefore it is impossible to properly capitalize a string with Ruby's built-in functionality. It gets worse: even with knowing the language, it is sometimes impossible to do capitalization properly. For example, in German, So, instead of sometimes giving the wrong answer, Ruby chooses to sometimes give no answer at all, which is why non-ASCII characters simply get ignored in downcase/upcase/capitalize operations. (Which of course also reads to wrong results, but at least it's easy to check.) |
|||
|
|
Use
|
|||||||||
|
|
capitalize first letter of first word of string
capitalize first letter of each word In rails:
In ruby:
|
||||
|
|
|
@AntonAL you can use the following code if you want it in your rails environment
and you can use this one in ruby
The ruby code executes on both ruby as well as rails environment so no worries. |
|||||||
|