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.
How to convert a string to Lower or Uppercase of a String in Ruby
To convert the content to lowercase, use .downcase:
1 2 |
"Hello James!".downcase "hello james!" |
Similarly, to transform everything to uppercase, use .upcase:
1 2 |
"Hello James!".upcase "HELLO JAMES!" |
If you want to capitalize only the first letter of a String, use the .capitalize method:
1 2 |
"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:
1 2 |
"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:
1 2 3 4 |
string ="Hello James!" string.downcase! string "Hello james!" |
Including support for Unicode, and ASCII in capitalization methods in Ruby
These methods operate natively in ASCII. To add support for Unicode, is necessary to install a gem, as showed below:
1 2 3 4 5 6 |
$ 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!