In Ruby, a String contains and manipulates an arbitrary sequence of bytes, typically representing characters. When you want to change the contents of a String in Ruby, it should be noted that methods with the name ending in “!” modify the String that is receiving this method, while those without “!” return a new String.
To convert the content to lowercase, use .downcase:
"Hello James!".downcase "hello james!"
Similarly, to transform everything to uppercase, use .upcase:
"Hello James!".upcase "HELLO JAMES!"
If you want to capitalize only the first letter of a String, use the .capitalize method:
"hello james!".capitalize "Hello james!"
You can also use .titleize to ensure that the first letter of each word in the String will be uppercase:
"hello james" .titleize "Hello James"
Remember that if you add the exclamation point in any of these methods, the original String will be modified, as shown below:
string ="Hello James!" string.downcase! string "Hello james!"
These methods operate natively in ASCII. To add support for Unicode, is necessary to install a gem, as showed below:
$ Gem install unicode_utils irb > require 'Unicode_utils' => true > UnicodeUtils.downcase ("FEN BİLİMLERİ",: Tr) => "Fen bilimleri"
Do you know other ways to perform this case changes on a String in Ruby? Share your comments in the section below!
If you want to explore other questions about this programming language, you can check out our Ruby programming videos about Ruby. Below we show some examples:
You can also subscribe to some channels that broadcast programming in Ruby, such as the following:
Another cool way to find out interesting things about Ruby is to access our project page!
We’re thrilled to announce an exciting opportunity for you to win not one but two…
Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…
Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…
Another week to bring you the top yield platforms for three of the most prominent…
If you hold a large volume of LEDU tokens above 1 million units and wish…
It’s another week and like always we have to explore the top yield platforms for…
View Comments
Cool. Thank you!
Great tutorial. I like how it layed out. Wonderful work.